RosettaCodeData/Task/Stack-traces/Oforth/stack-traces.fth

7 lines
102 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: f1 Exception throw("An exception") ;
Integer method: f2 self f1 ;
: f3 f2 ;
: f4 f3 ;
10 f4