Skip to main content

Variables

set

(value Any) | set(var-name String) | (value Any)

Sets variable named var-name to value.

set-tmp

(value Any) | set-tmp(var-name String) | (value Any)

Sets temporary variable named var-name to value. Temporary variables are local to the script, they are forgotten after single run.

unset

| unset(var-name String) |

Unsets temporary variable named var-name. Temporary variables are local to the script, they are forgotten after single run.

Rate this page