summaryrefslogtreecommitdiff
path: root/DSL/Parsing.hs
diff options
context:
space:
mode:
authorMatthew Hall <hallmatthew314@gmail.com>2023-02-18 17:19:09 +1300
committerMatthew Hall <hallmatthew314@gmail.com>2023-02-18 17:19:09 +1300
commit28ab4a097fb73a138850a3fb7f6e480765c702ee (patch)
tree2521dcbff013b670caec4b5b8de0eac8a0f150cc /DSL/Parsing.hs
parent8c33b3d2c69b6800ca34155d62c000250980e47e (diff)
Add STRCAT, update fizzbuzz
Diffstat (limited to 'DSL/Parsing.hs')
-rw-r--r--DSL/Parsing.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/DSL/Parsing.hs b/DSL/Parsing.hs
index ba6a5ee..fad68f1 100644
--- a/DSL/Parsing.hs
+++ b/DSL/Parsing.hs
@@ -74,6 +74,7 @@ intrinsicL = fromTableL [ (".", T_INTRINSIC I_DUMP)
, ("&&", T_INTRINSIC I_AND)
, ("||", T_INTRINSIC I_OR)
, ("^", T_INTRINSIC I_XOR)
+ , ("++", T_INTRINSIC I_STRCAT)
, ("==", T_INTRINSIC I_EQUAL)
, ("<", T_INTRINSIC I_LESSTHAN)
, (">", T_INTRINSIC I_GREATERTHAN)