We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3f249d commit bfd6bb2Copy full SHA for bfd6bb2
lexer.py
@@ -1,6 +1,6 @@
1
from tokens import Token, TokenType
2
3
-WHITESPACE = ' \n\t'
+WHITESPACE = ' \n\t\r'
4
DIGITS = '0123456789'
5
6
class Lexer:
main.py
@@ -13,5 +13,6 @@
13
interpreter = Interpreter()
14
value = interpreter.visit(tree)
15
print(value)
16
+
17
except Exception as e:
18
print(e)
0 commit comments