aboutsummaryrefslogtreecommitdiffstats
path: root/app/Debug.hs
blob: b28a967476a1520e4cad6bd3fa852df62bc19ed1 (plain)
1
2
3
4
5
6
7
module Debug where

import Debug.Trace (trace)
import Text.Printf (printf)

debug :: Show a => String -> a -> a
debug s x = trace (printf "%s: %s" s (show x)) x