aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'app/Main.hs')
-rw-r--r--app/Main.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs
index 913bbb2..7a8bffa 100644
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -1,3 +1,5 @@
+{-# LANGUAGE LambdaCase #-}
+
module Main
( main
) where
@@ -18,6 +20,5 @@ main :: IO ()
main = do
args <- getArgs
case args of
- -- ["transpile", path] -> transpile path
["reduce", path] -> reduce path
_ -> putStrLn "Usage: jotter [transpile|reduce] <file>"