YENGbreak
From OpenSimulator
break can be used to jump out of do...while, while and for() loops ( or case clauses )
string error = "";
while(true)
{
    if(blabla)
    {
        error = "blabla";
        break;
    }
    if(bla)
    {
        error = "bla";
        break;
    }
    break;
}