fork download
  1. table = {"a", "b", "C!"}
  2.  
  3. for i,v in pairs(table) do
  4. print(i..": "..v)
  5. end
Success #stdin #stdout 0.02s 2540KB
stdin
Standard input is empty
stdout
1: a
2: b
3: C!