packages feed

hascat-0.2: Logger.hs

module Logger
  ( log )
where

import Prelude hiding ( log )


log :: String -> IO ()
log s = putStrLn s