day()
Returns the day of the month (1-31).
For example:
Date.new(2001,2,3).mday #=> 3
static VALUE d_lite_mday(VALUE self) { get_d1(self); return INT2FIX(m_mday(dat)); }