No, instead of teaching 2 + 2 = sum (2, 2), i will teach the GOTO statement.
(handler-case (/ 1 0) (division-by-zero (condition) (format nil "We caught ~S." condition)) ((or file-error parse-error type-error) (condition) (format nil "We should never catch ~S" condition)) (:no-error (result) (declare (ignore result)) "We should never get here."))
(guard (con ((warning? con) "We should never get this.") ((assertion-violation? con) "We should get this.")) (/ 1 0))
http://www.lispworks.com/documentation/HyperSpec/Body/m_hand...
No, instead of teaching 2 + 2 = sum (2, 2), i will teach the GOTO statement.