1INCLAN: eval, show, set, unset, external - set, show and unset variables Usage: eval = show ... set ... set = unset ... = := external = external := The "eval" statement evaluates the Fortran-77 and assigns the result to the . The statement "show" without parameters lists the names and values of all global variables that do not have the value "NULL"; with parameters, "show" lists the names and values of the given variables. Global variables that are hidden by a local variable with the same name are identified by the attribute "hidden". The statement "set" without parameters lists the names and values of all variables that do not have the value "NULL"; with parameters, "set" lists the names and values of the given variables. In contrast to "show", local variables are listed too. "set = " gives the variable the string value . The statement "unset" the given variables. System variables cannot be unset. " = " and " := " are shorthand notations for "eval = " and "set = ", respectively. "external := " or "external = " assign a value (i. e. a string) or the result of an expression to an external (non-local) variable even if a local variable with the same name exists. This command can be used to return values from a macro to the calling macro.