Skip to content

Instantly share code, notes, and snippets.

@norman
Created June 20, 2012 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save norman/2962063 to your computer and use it in GitHub Desktop.
Save norman/2962063 to your computer and use it in GitHub Desktop.
function eval_data(string)
local chunk, err = loadstring(string)
if not chunk then error(err) end
local result = {}
setfenv(chunk, result)
chunk()
return result
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment