diff options
Diffstat (limited to 'nix/buildLisp/example/lib.lisp')
-rw-r--r-- | nix/buildLisp/example/lib.lisp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/nix/buildLisp/example/lib.lisp b/nix/buildLisp/example/lib.lisp new file mode 100644 index 000000000000..e557de4ae5fd --- /dev/null +++ b/nix/buildLisp/example/lib.lisp @@ -0,0 +1,6 @@ +(defpackage lib-example + (:use :cl) + (:export :who)) +(in-package :lib-example) + +(defun who () "edef") |