Variables
set
- Signature
- Example
(value Any) | set(var-name String) | (value Any)
9 set("foo") => 9
Sets variable named var-name
to value
.
set-tmp
- Signature
- Example
(value Any) | set-tmp(var-name String) | (value Any)
9 set-tmp("foo") => 9
Sets temporary variable named var-name
to value
.
Temporary variables are local to the script, they are forgotten after single run.
unset
- Signature
- Example
| unset(var-name String) |
9 unset("foo") => 9
Unsets temporary variable named var-name
.
Temporary variables are local to the script, they are forgotten after single run.