Returns the month (1-12).
Date.new(2001,2,3).mon #=> 2
Overloads:
Returns:
4926 4927 4928 4929 4930 4931
# File 'date_core.c', line 4926 static VALUE d_lite_mon(VALUE self) { get_d1(self); return INT2FIX(m_mon(dat)); }