summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/front/__init__.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/front/__init__.py b/src/front/__init__.py
index fdf35a8..b72b440 100644
--- a/src/front/__init__.py
+++ b/src/front/__init__.py
@@ -1,6 +1,5 @@
from front.lexer import Lexer
from front.parser import Parser
-from front.symbols import SymbolTable
def main():
source = '''fun fib[a]
@@ -19,7 +18,6 @@ fun main[]
@sum
end'''
- symbols = SymbolTable()
lex = Lexer(source)
# testing
@@ -28,7 +26,7 @@ end'''
print token.__repr__()
if not token:
break
-
+
# parse = Parser(lex)
# parse.program()