====== islt ====== ===== Description ===== Determine whether a variable is numerically less than another variable. ===== Function prototype ===== bool islt ===== Arguments ===== ^ Name ^ Type ^ Comment ^ | //arg1// | variant | The first variable to be compared. | | //arg2// | variant | The second variable to be compared. | The return value of ''islt'' may change if the type of //arg1// is not equal to that of //arg2//. See comments for [[plugins:general:zeoscript:reference:functions:iseq]]. ===== Return value ===== True if //arg1// is less than //arg2//, and false otherwise. ===== Example ===== echo // is 2 less than 3? (ans: yes!) ... the output of which is written to the event log by [[plugins:general:zeoscript:reference:functions:echo]] as: true ===== Comments ===== None. ===== See also ===== * [[plugins:general:zeoscript:reference:functions:iseq]] * [[plugins:general:zeoscript:reference:functions:isneq]] * [[plugins:general:zeoscript:reference:functions:isgt]]