Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. (handler-case
  2. (destructuring-bind (a b &key c) object
  3. (handler-case
  4. (body a b c object)
  5. (error (err)
  6. (format *error-output* "~&Detected error in body: ~A~%"))))
  7. (error (err)
  8. (format *error-output* "~&Detected error in destructuring-bind: ~A~%")))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement