This may seem a little useless, but this is because the function takes two arguments.
When a function takes a tuple, it actually takes one argument.
Since (+)
is a built-in function, using one argument will not be useful, since it will look like + (1,2)
, not 1 + 2
.
source share