|
|
|
|
|
by GuB-42
484 days ago
|
|
It is like a regular goto, but with the label and statement reversed. So instead of label:
do_something
goto label
You have comefrom label
do_something
label:
Really, that's just syntax. Declare your labels with "comefrom", and ":" means "jump". But it looks a lot more confusing this way. |
|