I have two Boolean variables, namely "a" and "b".
In general, there are 4 states for variables (TT, TF, FT, FF).
I want to see how I can automatically change variables from true to false and code for each state.
Something like a "For" loop, but for boolean variables.
For a = True to False
For b = True to False
Next
Next
source
share