aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Eval.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-08-10 18:53:34 +0200
committerMarvin Borner2022-08-10 18:53:34 +0200
commit792534b3888bc1b9c33047f1c312c4e17a720885 (patch)
treeb0401f5c1ca156858fb7de94a5488151be075c89 /src/Eval.hs
parentcba3d7d21241f8db913e6e2733a8edc3a522ee62 (diff)
Added syntactic sugar for strings & chars
Diffstat (limited to 'src/Eval.hs')
-rw-r--r--src/Eval.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Eval.hs b/src/Eval.hs
index 7cf598b..3a1b0c1 100644
--- a/src/Eval.hs
+++ b/src/Eval.hs
@@ -137,7 +137,7 @@ evalInstruction (ContextualInstruction instr inp) s@(EnvState env) rec conf = ca
<> (show e')
<> "\n*> "
<> (show reduced)
- <> (if likeTernary reduced
+ <> (if likeTernary reduced -- TODO: Also sugar string/char
then "\t(" <> (show $ ternaryToDecimal reduced) <> ")"
else ""
)
@@ -255,5 +255,5 @@ evalMain = do
exec path (try . Byte.readFile) (fromBitString . Bit.bitString)
["-E", path] -> exec path (try . readFile) id
['-' : _] -> usage
- [path ] -> evalFile path putStrLn decodeStdout
+ [path ] -> evalFile path putStr decodeStdout
_ -> usage