Name: Anonymous 2017-09-22 2:12
Why can't we just have
Dare say I should use... EXCEPTIONS?!
break
accept a number so we can break multiple loops at the same time?
for( /*...*/ ) {
do {
x = f();
switch( x ) {
case Error;
break 3; // was that so fucking hard?
}
} while( /*...*/ );
}
Dare say I should use... EXCEPTIONS?!