Assign - o2bblockbusting/cs421_project GitHub Wiki
The control character 'A' is used to assign a value to a variable. The 'A' character is always paired with a variable name, a data type, the value character ('V'), and finally the actual data. The assign character is also used for defining functions. You can learn more about assign's use in defining functions by going to this page.
Examples
Assign the integer (N) value 2 to the variable 'num': AnumNV2
Assign the string (S) value "hello" to the variable 'str': AstrSV"hello"
Create an integer returning function called 'add':
AaddFNV(Na,Nb)Y
Ra+b
Z