実数1 > 実数2
日付1 > 日付2
文字列1 > 文字列2

結果(Result)

真偽値比較の結果

解説(Note)

 両辺を比較して、左辺が大きければ真(true)を返す。
 詳しい法則などは、比較演算子の解説を参照してほしい。
「>」の代わりに以下の形式も使える、これはより自然な英語のように書くために用意されているもので、機能に違いは無い。
[is] greater than
comes after
is not less than or equal [to]
isn't less than or equal [to]

用例(Example)

  1. number of items in {9, 5, 1} > 4
  2. "Apple" greater than "B"
※1,2 結果ウィンドウでResultを見て下さい。