Difference between revisions of "Assignn"
From AGI Wiki
Jump to navigationJump to search(One intermediate revision by the same user not shown) | |||
Line 16: | Line 16: | ||
== Example == | == Example == | ||
− | + | <div class="CodeBlockHeader">Code:</div> | |
<syntaxhighlight lang="agi"> | <syntaxhighlight lang="agi"> | ||
assignv(v50, 75); | assignv(v50, 75); | ||
v50 = 75; | v50 = 75; | ||
− | </syntaxhighlight | + | </syntaxhighlight> |
== Technical Information == | == Technical Information == |
Latest revision as of 20:20, 23 March 2019
The assignn command assigns a numeric value to a variable.
Syntax
assignv(var vA, byt B);
vA = B;
Remarks
None.
Possible Errors
None.
Example
Code:
<syntaxhighlight lang="agi"> assignv(v50, 75); v50 = 75; </syntaxhighlight>
Technical Information
Required Interpreter Version: | Available in all AGI versions. |
Byte-Code Value: | 3 (0x03 hex) |