Method: Time#mon

Defined in:
lib/source/ruby.rb

#monObject

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.mon           #=> 9


6473
6474
6475
# File 'lib/source/ruby.rb', line 6473

def mon
  `this._value.getMonth()`
end