hy/test.hy
2012-12-16 17:14:31 -05:00

7 lines
124 B
Hy

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