- require 'load_args'
- test = load_args.test
- local c = 1 -- try commenting this out
- for t = 1, 256 do
- local args = { }
- for i = 1, t do
- args[i] = i * t
- c = c + 1 -- try commenting this out
- end
- print(t .. ":", unpack(args))
- local n, nargs, len1, len2 = test(unpack(args))
- end