SPC  Version 0.9.5
 All Files Functions Groups Pages
if_test.spc

This is a test of boolean and logic.

task main(){
int x = 3;
bool b1, b2, b3;
if( (x=b1) && b2 && b3 && x+3>33)
Wait( 1000 );
x = b1 && b2 && b3;
}