|
The name of a HareScript library was expected at this position. This error occurs when the LOADLIB statement doesn’t have a (correct) parameter. The following example shows both an incorrect use of the LOADLIB statement and a correct one:
// Not correct: LOADLIB needs one (STRING) parameter
LOADLIB;
// Correct use: the LOADLIB statement is followed by
// a STRING parameter
// Make all public variables, functions and macros in
// 'money.whlib' available
LOADLIB "wh::money.whlib"; |
For more information, see the HareScript language reference section on libraries. << Back to errors overview
|