hy/test.hy
2012-12-15 18:59:11 -05:00

9 lines
132 B
Hy

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