RosettaCodeData/Task/Exceptions/Forth/exceptions-2.fth
2023-07-01 13:44:08 -04:00

4 lines
123 B
Forth

: report ( n -- ) ?dup if ." caught " . else ." no throw" then ;
: test ( -- )
['] f catch report
['] g catch report ;