aboutsummaryrefslogtreecommitdiffstats
path: root/app/Debug.hs
diff options
context:
space:
mode:
Diffstat (limited to 'app/Debug.hs')
-rw-r--r--app/Debug.hs10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/Debug.hs b/app/Debug.hs
deleted file mode 100644
index 3499e02..0000000
--- a/app/Debug.hs
+++ /dev/null
@@ -1,10 +0,0 @@
-module Debug
- ( 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