I have a if statement that I want to "break" out of. I understand that break is only really for loops. Can anyone help?
For those that require an example of what I'm trying to do:
if( color == red )
{
...
if( car == hyundai ) break;
...
}
EDIT: Thanks for all your replies. It looks like I'll use a second if statement inside the first. Something like:
if( car != hyundai )

switchblock instead; they do support breaking. – user1059895 Dec 15 '11 at 16:43gotoalthough it is not recommended – Emmanuel N Dec 15 '11 at 16:44