RosettaCodeData/Task/Exceptions/PicoLisp/exceptions.l

5 lines
218 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(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