fork download
  1. a = {"hello", "world"};
  2. print(table.unpack(a)); -- OK
  3. print((table.unpack(a))); -- Only prints "hello"
  4.  
Success #stdin #stdout 0.01s 5376KB
stdin
Standard input is empty
stdout
hello	world
hello