aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Eval.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-07-16 23:36:46 +0200
committerMarvin Borner2022-07-16 23:36:46 +0200
commit4c7d4174a2fcdea74d332cf7b407d6234c06bb2d (patch)
tree60e068ff6bbd9f3c9b3b109ea3488fb386ef1b31 /src/Eval.hs
parent88b0f7ed4e9580956f3be1eb50ce7cb10668207e (diff)
Got some things working
Diffstat (limited to 'src/Eval.hs')
-rw-r--r--src/Eval.hs35
1 files changed, 20 insertions, 15 deletions
diff --git a/src/Eval.hs b/src/Eval.hs
index ebca545..1c33fa2 100644
--- a/src/Eval.hs
+++ b/src/Eval.hs
@@ -16,6 +16,7 @@ import Paths_bruijn
import Reducer
import System.Console.Haskeline
import System.Console.Haskeline.Completion
+import System.Directory
import System.Environment
import System.Exit
import System.IO
@@ -92,24 +93,27 @@ eval (line : ls) state@(EnvState env) isRepl =
else eval ls (EnvState env') isRepl
Import path -> do
lib <- getDataFileName path -- TODO: Use actual lib directory
- exists <- doesFileExist lib
+ exists <- pure False -- doesFileExist lib
loadFile $ if exists then lib else path
Evaluate exp ->
let (res, env') = evalExp exp `runState` env
- in putStrLn
- (case res of
- Left err -> show err
- Right exp ->
- "<> "
- <> (show exp)
- <> "\n*> "
- <> (show reduced)
- <> "\t("
- <> (show $ binaryToDecimal reduced)
- <> ")"
- where reduced = reduce exp
- )
- >> eval ls state isRepl
+ in
+ putStrLn
+ (case res of
+ Left err -> show err
+ Right exp ->
+ "<> "
+ <> (show exp)
+ <> "\n*> "
+ <> (show reduced)
+ <> (if likeTernary reduced
+ then
+ "\t(" <> (show $ ternaryToDecimal reduced) <> ")"
+ else ""
+ )
+ where reduced = reduce exp
+ )
+ >> eval ls state isRepl
Test exp1 exp2 ->
let (res, _) = evalTest exp1 exp2 `runState` env
in case res of
@@ -201,3 +205,4 @@ evalMain = do
["-E", path] -> exec path (try . readFile) id
['-' : _] -> usage
[path ] -> evalFile path print id
+ _ -> usage