|
The script encompassed a string without an end. To resolve this, review your script at the given line number and make sure your string declarations have ending quotes (') and double quotes (“).
// Error: STRING is not ended correctly (doesn’t have
// an ending double quote (")
STRING title := "Main page;
// Correct declaration
STRING title := "Main page"; |
For more information, see the HareScript language reference section on the STRING variable. << Back to errors overview
|