Plaster

text
(declaim (ftype (function (&rest integer) number) foo)) (defun foo (&rest ints) (apply '+ ints)) (format t "~S~%" (foo 3.4 4))