ref: 22ec8f9ccf1c806f0329f51db837effe8abd5bf5
dir: /cpphscompat/Data/Time/Format.hs/
module Data.Time.Format(module Data.Time.Format) where import Data.Time.Clock data TimeLocale formatTime :: TimeLocale -> String -> UTCTime -> String formatTime _ _ (UTCTime t) = show t ++ "s"