aboutsummaryrefslogtreecommitdiff
path: root/src/Lexer.hs
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2022-08-30 21:02:24 +0100
committerJuan J. Martinez <jjm@usebox.net>2022-08-30 21:02:24 +0100
commitaaf2ef628772e5789203544ac6226b467891d1d9 (patch)
tree5d3dedb1e6c6c12791f8dc5d47d6d29a3b3b0fd8 /src/Lexer.hs
parent49940ac6b38204c4b1eb60e9dc1c553c331ac122 (diff)
downloadmicro-lang-hs-aaf2ef628772e5789203544ac6226b467891d1d9.tar.gz
micro-lang-hs-aaf2ef628772e5789203544ac6226b467891d1d9.zip
Boolean type, and true/false symbols
Diffstat (limited to 'src/Lexer.hs')
-rw-r--r--src/Lexer.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Lexer.hs b/src/Lexer.hs
index 83a1391..1778b21 100644
--- a/src/Lexer.hs
+++ b/src/Lexer.hs
@@ -10,7 +10,7 @@ scanner :: T.TokenParser ()
scanner = T.makeTokenParser style
where
ops = ["+", "*", "-", ";"]
- names = ["module", "private", "def", "return", "->"]
+ names = ["module", "private", "def", "return", "->", "true", "false"]
style =
emptyDef
{ T.commentLine = "#",