Hi, can I use differente labels in the IF statement? I was looking one example for a Radial Arm Maze and I found this code:
IF E/60 >= A [@TrueEndAdapt, @FalseCont]
@End: ON 1,2,3,4,5,6,7,8; Z^StartTest ---> S4
@Cont: ---> SX
This mean that I can use different labels for “true” and “false” case, if I understand that the first statement is for “true” case and the second one is for “false” case.
Yes. The labels are abitrary. It is the location that matters. The first one is always the true portion and the second one is always the false portion.