The following operators are available:
- less than (lt);
- greater than (gt);
- less than or equal to (le);
- greater than or equal to (ge);
Prototypes
boolean <-- string lt string
boolean <-- string gt string
boolean <-- string le string
boolean <-- string ge string
Examples
3 lt 4; TRUE4 gt "5"; FALSE"100" ge "11"; FALSE