It works, in the Arduino, if you "add" another instruction after the label: <------
Arduino Example
for(byte r = 0; r < 255; r++){
for(byte g = 255; g > -1; g--){
for(byte b = 0; b < 255; b++){
if (analogRead(0) > 250){ goto bailout;}
// more statements ...
}
}
}
bailout: // <------------- You need to add another instruction after this for it to
// compile !!!!! The example left the next instruction out.
BTW ... just killing time checking all the Maple's instruction commands until I get my
USBprint and have the capability to run on external power on my win xp 32 ... Hint Hint
EDITED by bnewbold: put code in code block for readability