Slimport
From OpenEUO
Calling Convention
Call
sl.slimport(style)
Args
style is a string, valid values include any combination of 'lower', 'upper', 'camel'
Results
none
Usage Example
local sl = dofile(getinstalldir()..'/lib/simplelib.lua') sl.slimport('camel')
Description
Imports all names (keys) defined in the simplelib interface into the global environment G_. Use is strongly discouraged as the library will no longer be able to catch errors in usage stemming from calling undefined, misspelled, or overwritten names.
Valid values for the string argument style include any of 'lower' (default naming convention), 'upper', or 'camel' (for CamelCase).