Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I'm probably just being stupid, but I can't get the logical inversion to work in SNEX.
I'm initializing a variable like this:
bool A = false;
In my script, I'm running this but it's not inverting:
A = !A;
What am I doing wrong?
I think a bool is just an integer in disguise in SNEX. Try
bool
integer
A = 1 - A;