diff options
author | Marvin Borner | 2022-07-27 01:19:44 +0200 |
---|---|---|
committer | Marvin Borner | 2022-07-28 01:05:09 +0200 |
commit | ac513ff24c78ad0cb008c08c25bf48b4464fff6b (patch) | |
tree | 05bc1b562d106de164f5baec6a2dfc4a93113b7b /src/Eval.hs | |
parent | 2502b1adb0243eb61b156920a6df389c3f883ac4 (diff) |
Future
Diffstat (limited to 'src/Eval.hs')
-rw-r--r-- | src/Eval.hs | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/Eval.hs b/src/Eval.hs index c9c784e..e0ad17a 100644 --- a/src/Eval.hs +++ b/src/Eval.hs @@ -231,8 +231,11 @@ runRepl = do usage :: IO () usage = do putStrLn "Invalid arguments. Use 'bruijn [option] path' instead" - putStrLn "-c\tcompile path to binary-BLC" - putStrLn "-C\tcompile path to ASCII-BLC" + putStrLn "-o\toptimize path" + putStrLn "-c\tcompress path to binary-BLC" + putStrLn "-C\tcompress path to ASCII-BLC" + putStrLn "-b\tcompile path to binary-BLC" + putStrLn "-B\tcompile path to ASCII-BLC" putStrLn "-e\texecute path as binary-BLC" putStrLn "-E\texecute path as ASCII-BLC" putStrLn "-*\tshow this help" @@ -243,10 +246,10 @@ evalMain = do args <- getArgs case args of [] -> runRepl - ["-c", path] -> evalFile path + ["-b", path] -> evalFile path (Byte.putStr . Bit.realizeBitStringStrict) (toBitString . toBinary) - ["-C", path] -> evalFile path putStrLn toBinary + ["-B", path] -> evalFile path putStrLn toBinary ["-e", path] -> exec path (try . Byte.readFile) (fromBitString . Bit.bitString) ["-E", path] -> exec path (try . readFile) id |