fork download
  1. minion = {
  2. hp = 1000,
  3. x = 10,
  4. y = 25 }
  5. for i, v in pairs(minion) do
  6. print(i, "=>", v)
  7. end
  8.  
  9. --https://pt.stackoverflow.com/q/78830/101
Success #stdin #stdout 0s 4564KB
stdin
Standard input is empty
stdout
y	=>	25
hp	=>	1000
x	=>	10