2022-02-01 08:38:26 MrMobius: setjmp/longjmp is the closest thing I use in C 2022-02-01 08:38:54 Forth 200x exceptions are quite useful for this sort of thing too 2022-02-01 08:39:15 The code's *just* about barely cleaner, probably could wrap the exception wordset to make them a bit friendlier 2022-02-01 09:19:12 hmm, neat 2022-02-01 16:20:18 : 16. dup 4. dup 4. dup 4. 4. ; : 4. dup . dup . dup . . ; 2022-02-01 16:20:58 : 16. 16 0 do dup . loop drop ; 2022-02-01 16:22:40 : 16. 4. 4. 4. 4. drop ; : 4. s. s. s. s. ; : s. dup . ; 2022-02-01 16:31:54 : s dup if over . 1- recurse else 2drop then ; : 16. 16 s ; 2022-02-01 17:22:10 : 16. 16. do dup . loop drop ; 2022-02-01 22:10:04 any opinions on the TO construct to store variable values?