Personal tools

Getting the current date

From HaskellWiki

Revision as of 17:54, 11 July 2007 by BrettGiles (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search


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