Listen to QB64 Report!Our podcast on all things QB64 is out now. Listen athttp://podcast.qb64.org
0 Members and 1 Guest are viewing this topic.
In the spirit of QB64's essence, I don't even think it should.
Would EXIT IF not be a form of short circuiting? Or does Short Circuiting apply solely to a situation of multiple logical conditions?
that bugs out of the entire IF\THEN block spaghetti style . What he wants here is to have a situation where meeting one criteria of an IF question ,opens the door so to speak, so any other criteria are ignored.
Yeah in a series of AND conditions one False Boolean Test (=0) would knock the code execution off the THEN clause and start looking for an ELSE if any (before END IF), it is built in and must require some sort of look ahead in built-in code to know that OR wasn't in that series of ANDs of code line, OR hitting one FALSE it jumps ahead and looks for an OR part to begin evaluating for TRUE.