[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
What does this bit of code do?
- To: common-lisp@sail.stanford.edu
- Subject: What does this bit of code do?
- From: sandra%utah-orion@utah-cs.arpa (Sandra J Loosemore)
- Date: Fri, 27 Feb 87 09:57:38 MST
Suppose I define function "foo" like so:
(defun foo
(unwind-protect
(throw 'silly t)
(return-from foo nil)))
What does (catch 'silly (foo)) return?
-Sandra
-------