PC System: Windows XP SP3
Maple Version: 0.5
Problem: goto instruction does not compile.
Note: "no color" on goto
------
Code <---- This compiles
------
void setup() {
}
void loop() {
label1:
goto label1;
}
------
Code <---- This doesn't compile
------
void setup() {
}
void loop() {
goto label1;
label1:
}