#REF
Syntax
ref( $variable )
Description
Get the value of a variable with the name passed in as $variable.
Example
#ASSIGN($var_name, 'test')
#ECHO('$$test=' + $test)
#ECHO('$$test=' + #REF('test'))
#ECHO('$$test=' + #REF($var_name))
ref( $variable )
Get the value of a variable with the name passed in as $variable.
#ASSIGN($var_name, 'test')
#ECHO('$$test=' + $test)
#ECHO('$$test=' + #REF('test'))
#ECHO('$$test=' + #REF($var_name))