github.com/hirochachacha/plua@v0.0.0-20170217012138-c82f520cc725/stdlib/table/testdata/pack.lua (about)

     1  t = table.pack(); assert(#t == 0)
     2  t = table.pack(1, 2, 3); assert(t[1] == 1 and t[2] == 2 and t[3] == 3)