YENGbreak

From OpenSimulator

Revision as of 15:30, 20 November 2020 by Djphil (Talk | contribs)

Jump to: navigation, search

break can be used to jump out of do...while, while and for() loops ( or case clauses )

Make sure to include yoptions; on second line of script.
string error = "";
 
while(true)
{
    if(blabla)
    {
        error = "blabla";
        break;
    }
    if(bla)
    {
        error = "bla";
        break;
    }
    break;
}
Personal tools
General
About This Wiki