bake-0.0: Development/Bake/Util.hs
module Development.Bake.Util(
sleep, newCookie, timed, withTempFile
) where
sleep :: Double -> IO ()
sleep = undefined
newCookie :: IO String
newCookie = undefined
timed :: IO a -> IO (Double, a)
timed = undefined
withTempFile :: String -> (FilePath -> IO ()) -> IO ()
withTempFile = undefined