Getting the current date
(Redirected from Date)
Jump to navigation
Jump to 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