hy/test.py
Paul Tagliamonte 1c6874f779 Uh, lolwut?
2012-12-16 16:36:44 -05:00

12 lines
195 B
Python

from hy.compiler.modfaker import forge_module
from hy.lex.tokenize import tokenize
m = forge_module(
'test',
'test.hy',
tokenize('(def two (fn [] (print (+ 1 1))))')
)
print m.two