From cc39718f973d23653acfcab8db2ebcb9f030c702 Mon Sep 17 00:00:00 2001 From: Philipp Marek <philipp@marek.priv.at> Date: Thu, 28 Nov 2019 12:26:32 +0100 Subject: [PATCH] First part of alexandria-2 - the package. --- alexandria-2/package.lisp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 alexandria-2/package.lisp diff --git a/alexandria-2/package.lisp b/alexandria-2/package.lisp new file mode 100644 index 0000000..7a3bba1 --- /dev/null +++ b/alexandria-2/package.lisp @@ -0,0 +1,8 @@ +(defpackage :alexandria-2 + (:nicknames :alexandria.2 :alex-2) + (:use :cl :alexandria.1.0.0) + #+sb-package-locks + (:lock t) + (:export . + #. (let (res) (do-external-symbols (sym :alexandria.1.0.0) (push sym res)) res) + )) -- GitLab