Lessv
From AGI Wiki
Revision as of 20:18, 9 April 2019 by Andrew Korson (talk | contribs) (Created page with "The '''lessv''' command compares the values of two variables. It returns TRUE if the value of the first variable is less than the value of the second variable. =...")
The lessv command compares the values of two variables. It returns TRUE if the value of the first variable is less than the value of the second variable.
Syntax
Remarks
Test commands are only valid in an if
statement.
This statement can be combined with the NOT
operator to create a ‘greater than or equal to’ test.
Possible Errors
None.
Example
Code:
<syntaxhighlight lang="agi"> if(lessv(v50, v51))
{ print("v50 is less than v51"); }
if(v50 < v51) [ alternate syntax
{ print("v50 is less than v51"); }
if(v50 >= v51) [ equivalent to 'if(!lessv(v50, v51)) {'
{ print ("v50 is greater than or equal to v51"); }
</syntaxhighlight>
Technical Information
Required Interpreter Version: | Available in all AGI versions. |
Byte-Code Value: | 4 (0x04 hex) |