|
You have used one of the reserved words (these are words that have a defined use in HareScript or are reserved for future extensions) of HareScript in your script. Please review your script at the given line and column number to give your variable, function, macro or cell name a non-reserved name. For example, this is not allowed:
// The word 'break' cannot be used for a variable since
// it is a reserved word in HareScript
INTEGER break := 5; |
For more information, see the HareScript language reference section on listing of reserved words. << Back to errors overview
|