Files
grokking_algorithms/05_hash_tables/lua/02_check_voter.lua
2017-08-27 14:25:58 -04:00

13 lines
239 B
Lua

local voted = {}
function check_voter(name)
if voted[name] then
print("kick them out!")
else
voted[name] = true
print("let them vote!")
end
end
check_voter("tom")
check_voter("mike")
check_voter("mike")