aboutsummaryrefslogtreecommitdiff
path: root/lexer.py
diff options
context:
space:
mode:
authormryouse2022-05-13 04:19:38 +0000
committermryouse2022-05-13 04:19:38 +0000
commit5f019f545a7214c0c7c6cc8d789886ebfcb93eba (patch)
treecc62936206df80797fd73a181e81103c31b2ace8 /lexer.py
parentbb3bb065d57546370451dd9579cbad2f08758108 (diff)
add a shell-pipe command
Diffstat (limited to 'lexer.py')
-rw-r--r--lexer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexer.py b/lexer.py
index 0d9ed87..976bce8 100644
--- a/lexer.py
+++ b/lexer.py
@@ -9,7 +9,7 @@ OPEN_BRACE = "["
CLOSE_BRACE = "]"
DIGITS = "0123456789"
LETTERS = "abcdefghijklmnopqrstuvwxyz"
-PUNCTUATION = "-_!*$@%^&=+/?<>~"
+PUNCTUATION = "|-_!*$@%^&=+/?<>~"
SYMBOL_VALS = list(LETTERS + LETTERS.upper() + DIGITS + PUNCTUATION)