diff options
| author | mryouse | 2022-05-10 23:20:59 +0000 |
|---|---|---|
| committer | mryouse | 2022-05-10 23:20:59 +0000 |
| commit | ee318d229463b1b963862f3bda9e2cdddd604a67 (patch) | |
| tree | 024c7946a6a8182db4b7fa9ab224c30e9dbc6492 | |
| parent | 8a75618be33f2c01691050111f75f1071cfac1b4 (diff) | |
more available punctuation for symbols
| -rw-r--r-- | lexer.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ OPEN_PAREN = "(" CLOSE_PAREN = ")" DIGITS = "0123456789" LETTERS = "abcdefghijklmnopqrstuvwxyz" -PUNCTUATION = "-_!*$@%^&=+/" +PUNCTUATION = "-_!*$@%^&=+/?<>~" SYMBOL_VALS = list(LETTERS + LETTERS.upper() + DIGITS + PUNCTUATION) |
