Sitemap Sitemap  |  Contact Us Contact Us  |  Clients Clients
   Errors reference
  Home |  Downloads |  HareScript |  Websites/CMS |  Applications
Search for:  in: 
HareScript
Errors reference
 

LOADLIB must be followed by a string containing the library name.

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

 
Related
Download documents
The online documents are also available for download in PDF format, for offline use.
Read more...
 
Top To top of page