```lua function sum(x1, x2) x1 = x1 + x2 x2 = x2 + 3 sum(x1, x2) end sum(1,2,3) ``` This algorithm should fail, because `sum` called with 3 args, but we expect only 2.
This algorithm should fail, because
sumcalled with 3 args, but we expect only 2.