9 lines
128 B
Common Lisp
9 lines
128 B
Common Lisp
(defpackage :lspack/exe
|
|
(:use :cl)
|
|
(:export #:main))
|
|
|
|
(in-package :lspack/exe)
|
|
|
|
(defun main ()
|
|
(format t "Hello World!"))
|