1140: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 1: Line 1:
{{Error
{{Error
|1140
|1140
|Illegal or missing [[Line Label (Program)|line label]]
|Illegal or missing [[Line Label (program)|line label]]
|#Use of an illegal line label or a required line label or line reference was not specified.
|#Use of an illegal line label or a required line label or line reference was not specified.
#[[Let]] not used, but required.  (i.e.  If X then fndo_thing)
#[[Let]] not used, but required.  (i.e.  If X then fndo_thing)

Latest revision as of 21:52, 18 July 2013

Summary:

Illegal or missing line label

Cause:

  1. Use of an illegal line label or a required line label or line reference was not specified.
  2. Let not used, but required. (i.e. If X then fndo_thing)

Remedy:

  1. Remove all illegal characters from the error-causing line label; line labels must begin with an alphabetic character and may not exceed 30 characters. If a line label or reference is missing, add the appropriate reference.
  2. Add a Let to your statement. (i.e. If X then let fndo_thing)