blob: 82e5955dfc943fdda8ab636cef627e5a9c437483 [file] [log] [blame]
swissChili8fc5e2f2021-04-22 13:45:10 -07001(defun two-plus-two ()
2 (+ 2 2))
swissChilica107a02021-04-14 12:07:30 -07003
4(defun main ()
swissChili8fc5e2f2021-04-22 13:45:10 -07005 (print "64 / (2 + 2) =")
swissChili53472e82021-05-08 16:06:32 -07006 (print (/ 64 (two-plus-two)))
7 (print nil))