Feb 2009 -- Due to time pressures, the ongoing development of 'rope' has been suspended temporarily.

ROPE Language Reference - "lt"

"lt" stands for "Less Than".

"lt" takes two items from the stack, compares them and pushes back 1 if the first is less than the second - or 0 if the first is greater or equal to the second.

It is an error to compare two values of different types: either both must integers or both must be strings.

10 20 lt println         # -- prints 1
10 10 lt println         # -- prints 0
20 10 lt println         # -- prints 0

See Also

le gt