Skip to content

Instantly share code, notes, and snippets.

@szensk
Created January 3, 2016 07:46
Show Gist options
  • Save szensk/7986347f09742337b36e to your computer and use it in GitHub Desktop.
Save szensk/7986347f09742337b36e to your computer and use it in GitHub Desktop.
local enummt = {
__index = function(table, key)
if rawget(table.enums, key) then
return key
end
end
}
local function Enum(t)
local e = { enums = t }
return setmetatable(e, enummt)
end
local Screen = Enum {
Title = 1,
CharacterSelect = 1,
Playing = 1,
Paused = true,
Won = "anyTruthy",
Lost = 1
}
print(Screen.Title == Screen.Playing, Screen.Cat)
-- despite having the same value they're not equivalent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment