blob: 68cc615660f82cae0694a7cb21cd7d20c005972a [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) =")
6 (print (/ 64 (two-plus-two))))