Skip to content

Instantly share code, notes, and snippets.

@probablycorey
Created May 20, 2009 21:35
Show Gist options
  • Save probablycorey/115098 to your computer and use it in GitHub Desktop.
Save probablycorey/115098 to your computer and use it in GitHub Desktop.
Animal = {}
function Animal:new(o)
o = o or {}
setmetatable(o, self)
self.__index = self
return o
end
function Animal:favoriteFood()
return "grass"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment