lua-users home
lua-l archive

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


>Since dofile is not implemented in 5.0w0, I tried loadfile:
>
>    loadfile("scheduler.lua")
>
>This executes with no error, but does NOT load the file (!).

Try loadfile("scheduler.lua")()
dofile was removed from 5.0w0, but will be put back, with a in different form,
as mentioned by Roberto recently.
--lhf