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

2 lines
96 B
Forth

: f ( -- ) 1 throw ." f " ; \ will throw a "1"
: g ( -- ) 0 throw ." g " ; \ does not throw