haskell-clock/src/Lib.hs

13 lines
165 B
Haskell

module Lib
(
curTimeString
) where
import Data.Time.Clock
curTimeString :: IO String
curTimeString = do
t <- getCurrentTime
return $ show $ t