fork download
  1. kabLights = {
  2. normal = 211,
  3. fire = 212,
  4. water = 213,
  5. earth = 214,
  6. air = 215,
  7. colorful = 216,
  8. house = 217,
  9. ambient = 218,
  10. speaker = 219,
  11. cleaning = 220
  12. }
  13.  
  14. for key, value in next, kabLights, nil do print(value) end
Success #stdin #stdout 0s 2844KB
stdin
Standard input is empty
stdout
216
211
214
215
217
220
212
213
219
218