hy/example

9 lines
107 B
Plaintext
Raw Normal View History

2013-02-28 22:27:20 -05:00
# (print ((fn [x] (* x x)) 2))
def __hy_anon_fn_00001(x):
return x * x
print __hy_anon_fn_00001(2)