Skip to content

Instantly share code, notes, and snippets.

/bootstrap.lua Secret

Created January 1, 2017 12:32
Show Gist options
  • Save anonymous/bcd612cb9398ce67ae80ee9c55e5a594 to your computer and use it in GitHub Desktop.
Save anonymous/bcd612cb9398ce67ae80ee9c55e5a594 to your computer and use it in GitHub Desktop.
local function w_render()
local self = {}
local onrender_cb
function self.onrender(cb)
onrender_cb = cb
end
function self.render()
onrender_cb()
end
return self
end
local w = w_render('value')
w:onrender(function()
print('onrender')
end)
w:render()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment