Content deleted Content added
David Morón (talk | contribs) |
Raymond Hill (talk | contribs) m →Tail recursive function: typo |
||
Line 93:
===Tail recursive function===
A function executes a number of tests and then if a certain test is true returns a certain value. If all tests evaluated as false, the function calls it self recursively on reduced input value. In
(DEFUN ''func'' (X)
|