5 lines
103 B
Common Lisp
5 lines
103 B
Common Lisp
|
|
(defvar bloop -4)
|
||
|
|
(if (and (fboundp 'abs)
|
||
|
|
(boundp 'bloop))
|
||
|
|
(format t "~d~%" (abs bloop)))
|