Does anyone have a solution that mimics in EFS/Java the "go to" statement of other languages?
Thank you.
Mihai
Thank you.
Mihai
// conditional statement set the value of the control var, myFlag.
if (condition) myFlag = 1;
if (myFlag == 1) {
// execute this code block
}
if (myFlag == 2) {
// execute this code block
}
if (myFlag == 3) {
// execute this code block
}
Comment