hy/test.hy

7 lines
124 B
Hy
Raw Normal View History

2012-12-16 23:14:31 +01:00
; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp
(def square (fn [x]
(* x x)))
(print (square 2))