exercism-common-lisp/hello-world/hello-world.lisp
Adam Cooper 577860559e Initial commit
This "initial" commit occurs after five exercises have been completed
2025-01-23 19:43:42 -05:00

7 lines
119 B
Common Lisp

(defpackage :hello-world
(:use :cl)
(:export :hello))
(in-package :hello-world)
(defun hello () "Hello, World!")