7 lines
124 B
Common Lisp
7 lines
124 B
Common Lisp
(defpackage #:hello-world
|
|
(:use #:common-lisp)
|
|
(:export #:hello-world)
|
|
(:nicknames #:hw))
|
|
|
|
(in-package #:hello-world)
|