Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 2nd, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 26  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. require 'load_args'
  2.  
  3. test = load_args.test
  4.  
  5. local c = 1 -- try commenting this out
  6. for t = 1, 256 do
  7.   local args = { }
  8.   for i = 1, t do
  9.     args[i] = i * t
  10.     c = c + 1 -- try commenting this out
  11.   end
  12.   print(t .. ":", unpack(args))
  13.   local n, nargs, len1, len2 = test(unpack(args))
  14. end