Getting the current date
From HaskellWiki
(Difference between revisions)
m (Categorize) |
|||
| Line 1: | Line 1: | ||
| - | to get the date | + | [[Category:How to]] |
| + | |||
| + | In order to get the date: | ||
<haskell> | <haskell> | ||
import Data.Time.Clock | import Data.Time.Clock | ||
Revision as of 17:53, 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
