Allows to call recursively the function being executed.
the parameters expected by the function.
The same as the function being executed.
long factorial(long a) { if (a <= 1) return a; else return a * recursion(a-1); }
See Implementation
Allows to call recursively the function being executed.