aboutsummaryrefslogtreecommitdiffstats
path: root/app/Debug.hs
blob: c6549a6bb9b48949dd9e361e63acc1fd2f84b984 (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\n" s (show x)) x