Method: Time#day

Defined in:
lib/source/ruby.rb

#dayObject

call-seq:

time.day  -> integer
time.mday -> integer

Returns the day of the month (1..n) for time.

t = Time.now    #=> Tue Sep 23 2008 22:10:22 GMT-0400 (EDT)
t.day           #=> 23


6336
6337
6338
# File 'lib/source/ruby.rb', line 6336

def day
  `this._value.getDate()`
end