Is there any way to implement a goto-type of command? Currently running a CB series. I have a program that glues 3 parts. I want to be able to glue just 1, just 2, or all 3 cases. I’m pretty sure I can break the main program into 3 separate subprograms and then call out each one using a switch case, but I’m hoping to not have to use multiple subprograms.
Hi, you can use some IF…ELSE statements to choose which parts of the program to run but it is often simpler just to use the switch case.