hy/example
2013-02-28 22:27:20 -05:00

9 lines
107 B
Plaintext

# (print ((fn [x] (* x x)) 2))
def __hy_anon_fn_00001(x):
return x * x
print __hy_anon_fn_00001(2)