Variables are used to store values/functions to be referenced and/or manipulated during the scope of script. They are case-sensitive and must start with a-z, A-Z, _ or $, followed by 0-9, a-z, A-Z, _ or $.
Valid : var1, _99, $1
Invalid : 9v, !a99, 1$
Here is how you can define as and initialize them.
Literal Variables
Integer, Double and String are the literal variables available under IMCScript.
Non-Literal Variables
List and Map are standard non-literal variables available under IMCScript.
List and Map returns EBList and EBMap datatype respectively. Kindly refer the relevant library methods for each of them.
Accessing and Manipulating List / Map
Array and Map can be initialized, accessed and manipulated as shown below.
Comments
0 comments
Article is closed for comments.