simple executable, only hello world

This commit is contained in:
2026-07-02 00:20:25 +03:00
parent 6f386fa9a6
commit 7609fcc6c8
5 changed files with 35 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
(defpackage :lspack/exe
(:use :cl)
(:export #:main))
(in-package :lspack/exe)
(defun main ()
(format t "Hello World!"))