12.04.2013, 20:03
They are not alike at all really. pawn-lang.pdf is a GREAT resource!
Quote:
goto label Moves program control (unconditionally) to the statement that follows the specified label. The label must be within the same function as the goto statement (a goto statement cannot jump out of a function). |
Quote:
do statement while ( expression ) Executes a statement before the condition part (the while clause) is evaluated. The statement is repeated while the condition is logically “true”. The statement is at least executed once. |