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 2 removed one line
At line 89 changed one line
||||| ||B||a||s||i||c|| || ||||| ||v||o||l||k||s||F||o||r||t||h|| ||||| ||D||e||s||c||r||i||p||t||i||o||n|| |||||
|| Basic ||volksForth||Description||
At line 121 changed 4 lines
||||| ||B||a||s||i||c|| || ||||| ||v||o||l||k||s||F||o||r||t||h|| ||||| ||D||e||s||c||r||i||p||t||i||o||n|| |||||
| GOSUB | | Subroutines are replaced by words in Forth. To call one, you type in its name |
| GOTO | | FORTH doesn't have explicit GOTO statements but several constructions have them implicitly. The most important is IF ... ELSE ... THEN - see IF. The following also contain GOTO's BEGIN ... n UNTIL which repeats until n is non-zero. BEGIN...n WHILE ... REPEAT which repeats while n is non-zero. DO ... LOOP and DO ... +LOOP - see FOR |
| IF ... THEN | IF ... ELSE ... THEN | |
||Basic|| volksForth||Description
| GOSUB | | Subroutines are replaced by words in Forth. To call one, you type in its name
| GOTO | | FORTH doesn't have explicit GOTO statements but several constructions have them implicitly. The most important is IF ... ELSE ... THEN - see IF. The following also contain GOTO's BEGIN ... n UNTIL which repeats until n is non-zero. BEGIN...n WHILE ... REPEAT which repeats while n is non-zero. DO ... LOOP and DO ... +LOOP - see FOR
| IF ... THEN | IF ... ELSE ... THEN |
At line 154 changed one line
||Basic|| ||volksForth|| ||Description||
||Basic||volksForth|| Description||