9 lines
107 B
Plaintext
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)
|