3 lines
90 B
Common Lisp
3 lines
90 B
Common Lisp
(declaim (ftype (function (fixnum) fixnum) frobnicate))
|
|
(defun frobnicate (x)
|
|
(+ x 42))
|