> (Bitwise and conditional)

Checks if one value is greater than another.

Arguments

value0
can be a number or a string.
value1
must be of the same type as
value0
.

Return values

condition
is TRUE if
value0
is greater than
value1
, FALSE otherwise.

Example

1 2 > print LF print "Str" "St" > print LF print "Str" "Str" > print
Output:
FALSE TRUE FALSE