hy/test.hy
2012-12-16 08:24:22 -05:00

7 lines
121 B
Hy

; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp
(def square
(fn [x] (* x x)))
(print (square 4))