lua-users home
lua-l archive

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


The Lua base function load(), I do not understand. Can someone
please explain what its intended usage is?

Experimenting I get:

> a=load(function() print( "hello") end)
hello
hello
> a()
>

DB