fork(1) download
  1. -- your code goes here
  2.  
  3. function test(x, y, z)
  4. print(x, y, z)
  5. end
  6.  
  7. function two()
  8. return 10, 11
  9. end
  10.  
  11. function three()
  12. return 10, 11, 12
  13. end
  14.  
  15. test(three())
  16. test(two(), 12)
Success #stdin #stdout 0.01s 2496KB
stdin
Standard input is empty
stdout
10	11	12
10	12	nil