Revision 16,
738 bytes
checked in by marcus, 15 years ago
(diff) |
r1 | svn | 2007-12-13 11:10:29 +0100 (Do, 13 Dez 2007) | 2 lines
Initial import
|
Line | |
---|
1 | command GOTO <label> |
---|
2 | ============ |
---|
3 | |
---|
4 | key: jump to label |
---|
5 | |
---|
6 | Jumps within the current command level to the label <label> and continues |
---|
7 | execution with the statement in the next line after the label. |
---|
8 | |
---|
9 | Label names must end with a colon ":". |
---|
10 | |
---|
11 | |
---|
12 | parameters |
---|
13 | |
---|
14 | <label> --- parameter type: string |
---|
15 | Name of the label, where to jump to. The label must be in the current |
---|
16 | command level. Label names must end with a colon ":". |
---|
17 | |
---|
18 | |
---|
19 | qualifiers |
---|
20 | |
---|
21 | /FORWARD |
---|
22 | The label search is restricted to the statements after the GOTO command. |
---|
23 | This qualifier isn't necessary on forward jumps but it increases |
---|
24 | execution time. |
---|
25 | |
---|
26 | examples: |
---|
27 | |
---|
28 | GOTO LOOP_START: ! jumps to label LOOP_START: |
---|
29 | |
---|
30 | GOTO/FORWARD LOOP_EXIT: ! jumps forward to label LOOP_EXIT: |
---|
31 | |
---|
Note: See
TracBrowser
for help on using the repository browser.