diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-02-13 02:07:20 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-02-13 02:10:56 +0100 |
commit | 950eea3ba04e94cf3d5797f9b5d32b2621c89b55 (patch) | |
tree | 2e6aee5b7f571ca8022181689d5650a8c1b82f03 /app/Debug.hs | |
parent | b110c5904d4b252d0adbb7fbfabd3270a7844fd3 (diff) |
refactor library
Diffstat (limited to 'app/Debug.hs')
-rw-r--r-- | app/Debug.hs | 10 |
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 |