fork download
  1. function func()
  2. return 1, 2, 3, 4, 5
  3. end
  4.  
  5. a, b = func()
  6. print(a, b)
  7.  
  8. a, b, c, d, e = func()
  9. print(a, b, c, d, e)
  10.  
  11. a, b, c, d, e, f, g = func()
  12. print(a, b, c, d, e, f, g)
Success #stdin #stdout 0s 2788KB
stdin
Standard input is empty
stdout
1	2
1	2	3	4	5
1	2	3	4	5	nil	nil