From 5f019f545a7214c0c7c6cc8d789886ebfcb93eba Mon Sep 17 00:00:00 2001 From: mryouse Date: Fri, 13 May 2022 04:19:38 +0000 Subject: add a shell-pipe command --- lexer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lexer.py') 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) -- cgit v1.2.3