Just another update

This commit is contained in:
Ingy döt Net 2015-02-20 00:35:01 -05:00
parent a25938f123
commit 00a190b0a6
6591 changed files with 94363 additions and 23227 deletions

View file

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

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,4 @@
(declaim (ftype (function (fixnum) fixnum) frobnicate))
(defun frobnicate (x)
(declare (type fixnum x))
(the fixnum (+ x 128)))