2 lines
87 B
Common Lisp
2 lines
87 B
Common Lisp
(handler-case (/ x y)
|
|
(division-by-zero () (format t "division by zero caught!~%")))
|