7 lines
104 B
Common Lisp
7 lines
104 B
Common Lisp
|
(defpackage lib-example
|
||
|
(:use :cl)
|
||
|
(:export :who))
|
||
|
(in-package :lib-example)
|
||
|
|
||
|
(defun who () "edef")
|