fork download
  1. local randomPick = {}
  2. randomPick.currentPick = 'N/A'
  3.  
  4. local sentF = function(port, ip, data)
  5. print('Sent info to ' .. randomPick.currentPick);
  6. end
  7.  
  8. sentF(80, 123456, "dummy")
  9.  
Success #stdin #stdout 0s 4320KB
stdin
Standard input is empty
stdout
Sent info to N/A