Equalv: Difference between revisions

From Sierra WikiNew
Jump to navigationJump to search
 
m (1 revision imported)
 
(No difference)

Latest revision as of 23:55, 2 June 2024

The equalv command compares the values of two variables. It returns TRUE if the values are equal.


Syntax

equalv(var vA, var vB)
vA == vB

Remarks

Test commands are only valid in an if statement. This statement can be combined with the NOT operator to create a ‘not equal’ test.

Possible Errors

None.

Example

Code:
if(v50 == v51)   [ equivalent to 'if(equalv(v50, v51))'
  {
  print("v50 equals v51");
  }

if(v50 != v51)   [ equivalent to 'if(!equalv(v50, v51))'
  {
  print ("v50 does not equal v51");
  }


Technical Information

Required Interpreter Version: Available in all AGI versions.
Byte-Code Value: 2 (0x02 hex)


See Also