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