Getting the current date

From HaskellWiki
Revision as of 17:53, 11 July 2007 by BrettGiles (talk | contribs) (Categorize)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


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