aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormryouse2022-05-10 23:20:59 +0000
committermryouse2022-05-10 23:20:59 +0000
commitee318d229463b1b963862f3bda9e2cdddd604a67 (patch)
tree024c7946a6a8182db4b7fa9ab224c30e9dbc6492
parent8a75618be33f2c01691050111f75f1071cfac1b4 (diff)
more available punctuation for symbols
-rw-r--r--lexer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexer.py b/lexer.py
index 11e02f1..85b404d 100644
--- a/lexer.py
+++ b/lexer.py
@@ -7,7 +7,7 @@ OPEN_PAREN = "("
CLOSE_PAREN = ")"
DIGITS = "0123456789"
LETTERS = "abcdefghijklmnopqrstuvwxyz"
-PUNCTUATION = "-_!*$@%^&=+/"
+PUNCTUATION = "-_!*$@%^&=+/?<>~"
SYMBOL_VALS = list(LETTERS + LETTERS.upper() + DIGITS + PUNCTUATION)