home *** CD-ROM | disk | FTP | other *** search
- "catch/throw/unwind-protect test. Should print :
- debut c1 c2 le-throw fin-unwind-protect fin-progn"
- (progn
- (print "debut")
- (catch :c1
- (print "c1")
- (unwind-protect
- (catch :c2
- (print "c2")
- (throw :c1
- (print "le-throw")
- 999)
- (print "fin-c2"))
- (print "fin-unwind-protect"))
- (print "fin-c1"))
- (print "fin-progn"))
-