Using BREAK
Hello everybody!
Could someone answer me how I could make a BREAK, if given the chance, in SPIN?
I'm needing to use a CASE, but encounter problems by putting the BREAK between the cases.
Could someone answer me how I could make a BREAK, if given the chance, in SPIN?
I'm needing to use a CASE, but encounter problems by putting the BREAK between the cases.

Comments
If you post code as an example remember to use the # symbol to so you code keeps its format.
Duane
PUB isAlpha(char) case char "a".."z","A".."Z": result := true other: result := falseI got knowledge could understand how it works.