feat(buildLisp): Add initial, tiny example program

This commit is contained in:
Vincent Ambo 2020-01-08 21:41:43 +00:00
parent bdad8f6642
commit 7bc10eb9b7
3 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,7 @@
(defpackage example
(:use :cl :lib-example)
(:export :main))
(in-package :example)
(defun main ()
(format t "i <3 ~S" (who)))