packages feed

pang-a-lambda-0.2.0.0: src/Debug.hs

module Debug where

import Control.Monad (when, void)

import Constants

debug :: Bool -> String -> IO ()
debug b msg = when b $ putStrLn msg