比較式を使うと、比較可能なタイプの値を比較することができます。結果は常に true または false のいずれかになります。
<compare_operand> == <compare_operand> -- equal <compare_operand> != <compare_operand> -- not equal <compare_operand> > <compare_operand> -- greater than <compare_operand> < <compare_operand> -- less than <compare_operand> >= <compare_operand> -- greater than or equal <compare_operand> <= <compare_operand> -- less than or equal
ここでは、 <math_operand> は次のうちのいずれかになります。
上の例では、 sin 関数呼び出しと「+」および「-」演算は、比較の前に行われます。
数値演算式の場合、比較演算はすべての適切なタイプで行われます。