hence/examples/test.lisp
2022-07-17 22:07:59 +02:00

7 lines
127 B
Common Lisp

;; test module
(module test
"Main module"
(defun main ()
"Program entrypoint"
(let ((x (+ 40 2))))
(debug x)))