Getting the current date
From HaskellWiki
(Difference between revisions)
m (Categorize) |
m (Date moved to Getting the current date) |
Current revision
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
