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