[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Call Lua functions without side effects
- From: Nick Gammon <nick@...>
- Date: Fri, 13 Jun 2008 07:35:34 +1000
On 13/06/2008, at 7:31 AM, Nick Gammon wrote:
sandbox = {} -- where to put their stuff
-- load the file, get a function to execute local f = assert
(loadfile ("foo.lua"))
-- want to load file into the sandbox table
setfenv (f, sandbox)
My mail program dropped a linefeed, this should clearly read:
-----
sandbox = {} -- where to put their stuff
-- load the file, get a function to execute
local f = assert (loadfile ("foo.lua"))
-- want to load file into the sandbox table
setfenv (f, sandbox)
... and so on ...
- Nick