Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1 @@
(defparameter *x* nil "nothing")

View file

@ -0,0 +1,3 @@
(defun frobnicate (x)
(declare (type fixnum x))
(the fixnum (+ x 128)))

View file

@ -0,0 +1 @@
(defvar *x* 42 "The answer.")

View file

@ -0,0 +1 @@
(documentation '*x* 'variable)

View file

@ -0,0 +1,3 @@
(let ((jenny (list 8 6 7 5 3 0 9))
hobo-joe)
(apply #'+ jenny))

View file

@ -0,0 +1,4 @@
(progn
(let ((*x* 43))
(print *x*)
(print *x*))

View file

@ -0,0 +1 @@
(setf *x* 625)

View file

@ -0,0 +1,2 @@
(setf *x* 42 *y* (1+ *x*))
=>43

View file

@ -0,0 +1,3 @@
(setf *x* 625)
(psetf *x* 42 *y* (1+ *x*)
=>NIL

View file

@ -0,0 +1,3 @@
(declaim (ftype (function (fixnum) fixnum) frobnicate))
(defun frobnicate (x)
(+ x 42))