September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
3
Task/Variables/Common-Lisp/variables-10.lisp
Normal file
3
Task/Variables/Common-Lisp/variables-10.lisp
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
(defun frobnicate (x)
|
||||
(declare (type fixnum x))
|
||||
(the fixnum (+ x 128)))
|
||||
|
|
@ -1,4 +1,2 @@
|
|||
(declaim (ftype (function (fixnum) fixnum) frobnicate))
|
||||
(defun frobnicate (x)
|
||||
(declare (type fixnum x))
|
||||
(the fixnum (+ x 128)))
|
||||
(setf *x* 42 *y* (1+ *x*))
|
||||
=>43
|
||||
|
|
|
|||
3
Task/Variables/Common-Lisp/variables-8.lisp
Normal file
3
Task/Variables/Common-Lisp/variables-8.lisp
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
(setf *x* 625)
|
||||
(psetf *x* 42 *y* (1+ *x*)
|
||||
=>NIL
|
||||
3
Task/Variables/Common-Lisp/variables-9.lisp
Normal file
3
Task/Variables/Common-Lisp/variables-9.lisp
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
(declaim (ftype (function (fixnum) fixnum) frobnicate))
|
||||
(defun frobnicate (x)
|
||||
(+ x 42))
|
||||
Loading…
Add table
Add a link
Reference in a new issue