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

4 lines
123 B
Forth

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