diff options
author | Marvin Borner | 2023-10-07 17:26:12 +0200 |
---|---|---|
committer | Marvin Borner | 2023-10-07 17:26:12 +0200 |
commit | 9753086b7938cb3c452efe768df5188f90350e28 (patch) | |
tree | 07743a93229e11d883f3cc6787afb0d34d8d6803 /app/Main.hs | |
parent | 0525f043d62dba0824b44236d4090ece64630828 (diff) |
Implemented from blog
Diffstat (limited to 'app/Main.hs')
-rw-r--r-- | app/Main.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Main.hs b/app/Main.hs index 7a8bffa..c1f1c2d 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -11,7 +11,7 @@ import Term reduce :: String -> IO () reduce path = do file <- readFile path - let termified = fromJotter file + let termified = fromJottary file putStrLn $ "input: " ++ show termified normal <- nf termified putStrLn $ "reduced: " ++ show normal @@ -21,4 +21,4 @@ main = do args <- getArgs case args of ["reduce", path] -> reduce path - _ -> putStrLn "Usage: jotter [transpile|reduce] <file>" + _ -> putStrLn "Usage: jottary [transpile|reduce] <file>" |