WLJS LogoWLJS Notebook

Greater

x > y yields True if x is greater than y.

x1 > x2 > x3 yields True if the values form a strictly decreasing sequence.

Examples

Comparison:

5 > 3
(* True *)

3 > 5
(* False *)

Chained comparison:

3 > 2 > 1
(* True *)

Please visit the official Wolfram Language Reference for more details.

On this page