Skip to content

Instantly share code, notes, and snippets.

View lucassardois's full-sized avatar
🎯
Writing in progress...

Lucas S. lucassardois

🎯
Writing in progress...
View GitHub Profile
@aurora
aurora / class.lua
Created November 11, 2010 10:51
class implementation for lua
function clone(object)
local dict = {}
local function clone(object)
if (type(object) ~= "table") then
return object
elseif (dict[object]) then
return dict[object]
end