4 lines
76 B
Common Lisp
4 lines
76 B
Common Lisp
|
|
(defun frobnicate (x)
|
||
|
|
(declare (type fixnum x))
|
||
|
|
(the fixnum (+ x 128)))
|