mirror of
https://github.com/lloeki/wasp.git
synced 2025-12-06 10:44:39 +01:00
8 lines
168 B
Python
8 lines
168 B
Python
import wasp.parser as parser
|
|
|
|
line = raw_input(">> ")
|
|
while line != "":
|
|
tree = parser.parse(line)
|
|
print "^^", tree
|
|
#tree.eval()
|
|
line = raw_input(">> ")
|