I found that Oshonsoft can use several logical OR + AND operators in IF and WHILE statements. It is mentioned in the manual.Oshonsoft can use only bitwise operators of C.
eg. & -> And, | -> Or, ~ -> Not, etc.
but no != , ||, && operators
For example the C statement:
if ( a != 1 || b != 2 || c != 3 )
x=0;
will be in Oshonsoft:
If a<>1 Or b<>2 Or c<>3 Then
x=0