Not Equal To (!=)


This operator is limited to integer values. != will ignore the decimal portion of a number.

This code shows what goes wrong:

if(0.1 != 0) Print("Not equal");
else Print("Equal");
"Equal" prints on the screen.