lua-users home
lua-l archive

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


> I guess loading code at runtime for example (it can load globals without knowing much details about it)... but I am sure there should be something more.

Loading code at runtime is not a small issue for dynamic languages.
(Quite the opposite, I consider it a defining feature of a dynamic
language.) But another advantage is that you do not need a link phase
before running your program.

-- Roberto