TinTin++ Mud Client Manual |
CONTINUE Command: #continue The continue command can be used inside the #FOREACH, #LOOP, #PARSE, #WHILE and #SWITCH commands. When #CONTINUE is found, tintin will go to the end of the command and proceed as normal, which may be to reiterate the command. Example: #loop 1 10 cnt {#if {$cnt % 2 == 0} {#continue} {say $cnt}} Related: break, foreach, list, loop, parse, repeat, return and while. |