diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-01-16 00:30:57 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-01-16 00:30:57 -0300 |
commit | a8b56704b52488f2865387d8cded8e5f13cdf919 (patch) | |
tree | b1fec64d8727e9f4692246702de3767435f7eaae /package.lisp | |
parent | 42014cb6d5706f80d47ac2dbab7353ce832ee1e1 (diff) | |
download | utils-a8b56704b52488f2865387d8cded8e5f13cdf919.tar.gz utils-a8b56704b52488f2865387d8cded8e5f13cdf919.zip |
Add alien call similar to what chezscheme has
Diffstat (limited to 'package.lisp')
-rw-r--r-- | package.lisp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package.lisp b/package.lisp index ebbe43b..f4158be 100644 --- a/package.lisp +++ b/package.lisp @@ -1,3 +1,7 @@ +(defpackage #:alien + (:use #:cl #:sb-alien) + (:export #:call)) + (defpackage #:print (:use #:cl) (:export #:table)) |