ref: fb1ea1419f29aeed4f943db2ee8d46b3833980b8
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"