From 7bc10eb9b78c08ae1e64ae5e24db26cdb74c7834 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 8 Jan 2020 21:41:43 +0000 Subject: feat(buildLisp): Add initial, tiny example program --- nix/buildLisp/example/lib.lisp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 nix/buildLisp/example/lib.lisp (limited to 'nix/buildLisp/example/lib.lisp') 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") -- cgit 1.4.1