11 lines
191 B
Python
11 lines
191 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 [x] (print x)))(two "Hello")')
|
|
)
|
|
|