Difference between revisions of "Importing Library Names Into Global Environment"
From OpenEUO
m (Created page with "All top level library methods can be imported into the global environment _G, though this usage is strongly discouraged, especially for authors of intermediate libraries. ...") |
m |
||
Line 3: | Line 3: | ||
sl.slimport('lower'|'upper'|'camel') | sl.slimport('lower'|'upper'|'camel') | ||
− | The library names have been selected to minimize interference with other libraries and lua itself, however, importing them can result in undetectable errors of usage such as having them later accidentally redefined. | + | The library names have been selected to minimize interference with other libraries and lua itself, however, importing them can result in undetectable errors of usage such as having them later accidentally or spuriously redefined. |
+ | |||
+ | == See Also == | ||
+ | |||
+ | * [http://www.easyuo.com/openeuo/wiki/index.php/Simplelib simplelib] |
Revision as of 08:26, 2 November 2010
All top level library methods can be imported into the global environment _G, though this usage is strongly discouraged, especially for authors of intermediate libraries.
sl.slimport('lower'|'upper'|'camel')
The library names have been selected to minimize interference with other libraries and lua itself, however, importing them can result in undetectable errors of usage such as having them later accidentally or spuriously redefined.