hy/test.py
2012-12-15 16:26:03 -05:00

9 lines
145 B
Python

from hy.lex.tokenize import tokenize
print tokenize("""
(+ 1 1) ; this adds one plus one
(- 1 1) ; this does other things
(print (+ 1 1))
""")