Compares two expressions of any type and returns true if the first is less than the second, false otherwise. This is the functional equivalent to the < operator.
lt( expression1, expression2 ) Boolean value
expression1, expression2
Values of any type. Both expressions must be of the same type.
This example shows both ways of comparing two expressions.
if(lt(¤t.line, 15))
show('Top of page')
endif()
%Same statement, using the < operator
if(¤t.line < 50)
show('Top of page')
endif()