lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On 04/07/2014 10:06 AM, John Hind wrote:
I do not understand the mindset that assumes everything in the Lua Reference Manual has to be implemented in 'C'. Why cannot some of the standard libraries be implemented in Lua?

Because there is no standard way for Lua to find and load Lua files. For an embedded system without file system this is a problem. The standard libraries provided in Lua would have to be defined within C strings to be able to be statically bound to the program.

--
Thomas