DOCUMENT RESOURCES FOR EVERYONE
Documents tagged
Engineering Deriving the Y Combinator

Deriving the Y Combinator Yuta Okazaki! Recurse Center Spring 2 2015 Recursive Function factorial = function(n){ if(n == 0){ return 1 } else{ n * factorial(n - 1) } } Pseudo…