Getting the current date: Difference between revisions
BrettGiles (talk | contribs) m Categorize |
BrettGiles (talk | contribs) m Date moved to Getting the current date |
||
(No difference)
|
Latest revision as of 17:54, 11 July 2007
In order to get the date:
import Data.Time.Clock
import Data.Time.Calendar
date :: IO (Integer,Int,Int) -- :: (year,month,day)
date = getCurrentTime >>= return . toGregorian . utctDay