$get

Gets the value of the named local variable.
Syntax
    $get{variable_name}
DocumentationGets the value of the named local variable:

    Parameter:
      variable_name, the name of the local variable whos value is requested.
    Returns:
      the requested value of the local variable.
    Throws:
      java.lang.IllegalArgumentException if no such local variable exists.
    Note:
      local variables are in scope in the page they defined since they defined (see also $set).
      They are not accessible within other pages.
Examples
Example 1:
    $set{a}{100}
    a: $get{a}

    Result 1:
    sets local variable "a" to the value "100", returns "a":
    a: 100
Example 2:
    $set{a}{7}
    $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 variable "a" and "b", decreases "a", if "a" equals
    "b":
    a equals b
GroupSpecial
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters1
Maximum parameters 2