Skip to content

Instantly share code, notes, and snippets.

@therealklanni
Last active December 2, 2015 21:22
Show Gist options
  • Save therealklanni/85a7a93342bcb0c572b1 to your computer and use it in GitHub Desktop.
Save therealklanni/85a7a93342bcb0c572b1 to your computer and use it in GitHub Desktop.
const Yfact = Y(g => n => n <= 1 ? n : n * g(n - 1))
// expanded as
const Yfact = Y(g => {
return n => {
return n <= 1 ? n : n * g(n - 1)
}
})
@therealklanni
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment