| Syntax |
|
| Documentation | Creates a local variable with the given name and value:
value, the value of the local variable to be created.
|
| Examples | |
Example 1:
a:$get{a} Result 1: sets the local variable "a" to the value "300", gets local variable "a": a: 300
$set{b}{6} $set{a}{$dec{$get{a}}} $if {$equals{$get{a}}{$get{b}}} {a equals b} {a and b are not equal} Result 2: sets local variables "a" and "b", decreases local variable "a", returns true if "a" equals "b": a equals b |
|
| Group | Special |
| Minimum required transaction-mode: | NONE |
| Required scripting permission of the developer | PERMISSION_FL_BASIC |
| Minimum parameters | 2 |
| Maximum parameters | 2 |