ansi-common-lisp Questions
2
Given this example code (from a Reddit /r/lisp question):
(defun next (pos)
(nth (1+ pos)
'(0 1 2 3 4 5 6 7 8 9 10)))
(defvar *next* (function next))
(let ((old-next #'next)
(previous (make-h...
Lousy asked 26/12, 2016 at 10:50
3
SBCL 64bit, 1.1.7
If I want to create a package and use a little symbols from package :CL, I will create a package like this one:
(defpackage :foo
(:import-from :cl
:defun :defmacro :in-packag...
Studding asked 30/5, 2013 at 13:20
1
© 2022 - 2024 — McMap. All rights reserved.