1070

From BR Wiki
Revision as of 16:43, 10 June 2014 by John (talk | contribs)
Jump to navigation Jump to search

Summary:

Invalid Variable name

Cause:

  1. Undefined variable name. A variable name was specified that was either invalid or not defined. One situation where this error can occur is when a FORM variable is not defined. In the following example, the variable P is used to identify the POS position. If P is not previously defined, this error will occur during execution: PRINT USING "FORM POS P, N 12.2": D
  2. Break used in conjunction with an otherwise unused variable or internal function (like fkey)

Remedy:

  1. Change the variable to a literal or define the variable.
  2. Check the spelling of the variable.