Create a new variable of the type provided and with the name provided.
hVar new <int:VarID> <string:VarName>
Name | Type | Comment |
---|---|---|
VarID | int | The variable type ID of the variable to be created. |
VarName | string | The name of the new variable to be created. |
A NULL variable handle if error, and a non-null variable handle otherwise.
new int "i" // create a new integer called i
None.