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