Created
January 3, 2016 07:46
-
-
Save szensk/7986347f09742337b36e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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