FR L | [Read (sets) a local string variable] |
FR G | [Read (sets) a global string variable] |
FR LS | [Sets local string variable using current string values] |
FR GS | [Sets global string variable using current string values] |
RR G | [Read Register variables - Global] |
[Where:
A 'chars' or 'opt-chars' can have embedded blanks or double (") quotes.
Anything within a 'chars' is evaluated (bound) only when
the string is used.
Anything within an [old-varname] not surrounded
by quotes is evaluated when variable is created (NOT used).
Some typical examples:
[str_variable] = 'filename'
[str_variable] = 'img{***[reg-variable]}'
[str_variable] = 'img[old-str-variable]'
[str_variable] = 'IMG{***[old-str-variable]}'
[str_variable] = [old-str-variable]
global [str_variable] = 'filename'
GLOBAL [str_variable] = 'filename'
[reg_variable] = 10
[reg_variable] = 45.7*32
[reg_variable] = -1.5678E-02
GLOBAL [reg_variable] = -2.567
GLO [reg_variable] = 3.14
Some more complex examples:
[new_str_variable] = '[old-str-variable]dat'
[new_str_variable] = [old-str-variable]'.dat'
[new_str_variable] = 'IMG'[old-str-variable]
[new_str_variable] = 'IMG'{***[old-reg-variable]}'
[old_str_variable] = 'temp-dir/'[old-str-variable]
NOTES