aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Eval.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-07-27 01:19:44 +0200
committerMarvin Borner2022-07-28 01:05:09 +0200
commitac513ff24c78ad0cb008c08c25bf48b4464fff6b (patch)
tree05bc1b562d106de164f5baec6a2dfc4a93113b7b /src/Eval.hs
parent2502b1adb0243eb61b156920a6df389c3f883ac4 (diff)
Future
Diffstat (limited to 'src/Eval.hs')
-rw-r--r--src/Eval.hs11
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