Operators

ExampleDescriptionOperator
x == yEqual to==
x != yNot equal to!=
x > yGreater than>
x < yLess than<
x >= yGreater than or Equal to>=
x <= yLess than or Equal to<=
x == 1 && y == 2And&&
x == 1 || y ==2Or||