assignin(scope, variable_name, variable_value)
| Parameter | Description |
|---|---|
| scope | a string: 'global', 'base', 'caller', 'local'. |
| variable_name | a string: the name of variable destination. |
| variable_value | a variable to assign. |
assignin assign value to a variable in a specified variables scope.
assignin('base', 'X', 33);
Y = acquirevar('base', 'X');
| Version | Description |
|---|---|
| 1.0.0 | initial version |