blob: 82e5955dfc943fdda8ab636cef627e5a9c437483 [file] [log] [blame]
(defun two-plus-two ()
(+ 2 2))
(defun main ()
(print "64 / (2 + 2) =")
(print (/ 64 (two-plus-two)))
(print nil))