fork(2) download
  1. local function test_A(op, ...)
  2. print(op)
  3. print(#arg)
  4. end
  5.  
  6. local function test_B(op, ...)
  7. print(op)
  8. print(arg.n)
  9. end
  10. test_A('фигня', 1,2,3)
  11. test_B('фигня', 1,2,3)
  12. test_A('фигня', 1,nil,3)
  13. test_B('фигня', 1,nil,3)
  14. test_A('фигня', 1,2,nil)
  15. test_B('фигня', 1,2,nil)
  16.  
Success #stdin #stdout 0s 2788KB
stdin
Standard input is empty
stdout
фигня
0
фигня
nil
фигня
0
фигня
nil
фигня
0
фигня
nil