fork download
  1. local list = { "first", 2, false, function() print("Forth!") end }
  2. print("Yup, 1-indexed:", list[1])
  3. print("Forth is 4 ...", list[4]())
Success #stdin #stdout 0.01s 5276KB
stdin
1
2
10
42
11
stdout
Yup, 1-indexed:	first
Forth!
Forth is 4 ...