exercism/common-lisp/hello-world/hello-world.lisp

7 lines
124 B
Common Lisp

(defpackage #:hello-world
(:use #:common-lisp)
(:export #:hello-world)
(:nicknames #:hw))
(in-package #:hello-world)