ref: 62044b52839f697afc20b623eb296488c02eaead
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"