Greatthan equals

From WikiManual
Revision as of 18:33, 25 October 2007 by Strangers (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Takes the two top values on the stack, and checks whether the first value is greater than or equal to the second.

Examples:

10 5 >= Is true

10 25 >= Is false, since 10 is neither greater than or equal to 25.

10 10 >= Is true, as 10 is equal to 10.

Logical Comparison Operators:

> <
>= <=
= !=
%= !%=
~= !~=