test.lua 84 B

123456
  1. function f(n, a, ...)
  2. local b
  3. n, b, a = n-1, ..., a
  4. assert(b == ...)
  5. end