call-seq:
time.mon -> integer time.month -> integer
Returns the month of the year (1..12) for time.
t = Time.now #=> Tue Sep 23 2008 22:10:22 GMT-0400 (EDT) t.month #=> 9
6486 6487 6488
# File 'lib/source/ruby.rb', line 6486 def month `this._value.getMonth()` end