[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Re: DateTime

Yukihiro Matsumoto

12/17/2006 11:26:00 PM

Hi,

In message "Re: DateTime"
on Mon, 18 Dec 2006 03:39:50 +0900, Lucas Holland <hollandlucas@gmail.com> writes:

|DateTime::now
|
|or
|
|DateTime.now
|
|it says that the constant DateTime is uninitalized.
|
|Can anyone help?

Put

require 'date'

before using DateTime.

matz.