Difference between revisions of "Getting the current date"

From HaskellWiki
Jump to navigation Jump to search
(No difference)

Revision as of 13:52, 11 July 2007

to get the date just use

date :: IO (Integer,Int,Int) -- :: (year,month,day)
date = getCurrentTime >>= return . toGregorian . utctDay