RosettaCodeData/Task/Exceptions/PicoLisp/exceptions.l
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

4 lines
218 B
Text

(catch 'thisLabel # Catch this label
(println 1) # Do some processing (print '1')
(throw 'thisLabel 2) # Abort processing and return '2'
(println 3) ) # This is never reached