about summary refs log tree commit diff
path: root/nix/buildLisp/example/lib.lisp
diff options
context:
space:
mode:
authorVincent Ambo <Vincent Ambo>2020-01-08T21·41+0000
committerVincent Ambo <Vincent Ambo>2020-01-08T21·41+0000
commit7bc10eb9b78c08ae1e64ae5e24db26cdb74c7834 (patch)
treef0b7c032232f32bf701cbb2548668f7efb151981 /nix/buildLisp/example/lib.lisp
parentbdad8f664220798bd5183933145e62bfceeea130 (diff)
feat(buildLisp): Add initial, tiny example program r/350
Diffstat (limited to 'nix/buildLisp/example/lib.lisp')
-rw-r--r--nix/buildLisp/example/lib.lisp6
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 0000000000..e557de4ae5
--- /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")