Difference between revisions of "Getting the current date"

From HaskellWiki
Jump to: navigation, search
 
m (Date moved to Getting the current date)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
to get the date just use
+
[[Category:How to]]
 +
 
 +
In order to get the date:
 
<haskell>
 
<haskell>
 +
import Data.Time.Clock
 +
import Data.Time.Calendar
 +
 
date :: IO (Integer,Int,Int) -- :: (year,month,day)
 
date :: IO (Integer,Int,Int) -- :: (year,month,day)
 
date = getCurrentTime >>= return . toGregorian . utctDay
 
date = getCurrentTime >>= return . toGregorian . utctDay
 
</haskell>
 
</haskell>

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