This page (revision-5) was last changed on 03-Feb-2023 15:21 by Stefan Haubenthal 

This page was created on 04-Apr-2010 16:58 by Carsten Strotmann

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
5 03-Feb-2023 15:21 18 KB Stefan Haubenthal to previous Typo
4 27-Apr-2010 22:25 18 KB Stefan Haubenthal to previous | to last code ersetzt
3 04-Apr-2010 17:00 18 KB Carsten Strotmann to previous | to last
2 04-Apr-2010 16:59 18 KB Carsten Strotmann to previous | to last
1 04-Apr-2010 16:58 18 KB Carsten Strotmann to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 removed one line
At line 178 changed one line
Forth does not have READ, DATA and RESTORE (although you could mimic them if you wanted) but it does have something very much simpler which does just as well, namely the stack. Instead of a DATA statement, you have a word which puts all the data on the stack. e.g. <code>: DATA 5 0 7 2 1 4 ;</code>
Forth does not have READ, DATA and RESTORE (although you could mimic them if you wanted) but it does have something very much simpler which does just as well, namely the stack. Instead of a DATA statement, you have a word which puts all the data on the stack. e.g. {{{: DATA 5 0 7 2 1 4 ;}}}