RosettaCodeData/Task/Runtime-evaluation/Forth/runtime-evaluation-2.fth
2023-07-01 13:44:08 -04:00

10 lines
256 B
Forth

unused . \ show how much dictionary space is available
marker restore
create foo 30 allot
: my-def 30 0 do cr i . ." test" loop ;
unused . \ lower than before
restore
unused . \ same as first unused; restore, foo, and my-def no longer defined