Skip to content

Greater

Check if values are greater than each other.

$ wo 'Greater[2, 1]'
True
$ wo 'Greater[1, 2]'
False
$ wo 'Greater[1, 1]'
False
$ wo 'Greater[1, 2, 3]'
False
$ wo 'Greater[3, 2, 1]'
True

>

Check if values are greater than each other.

$ wo '2 > 1'
True
$ wo '1 > 2'
False