Skip to content

Instantly share code, notes, and snippets.

@raganwald
Created January 17, 2013 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raganwald/4557628 to your computer and use it in GitHub Desktop.
Save raganwald/4557628 to your computer and use it in GitHub Desktop.
function Xenops (fn) {
return fn(
function S (a) { return function S__ (b) { return function S_ (c) {
return a(c)(b(c))
}}}
)(
function K (a) { return function K_ (b) {
return a
}}
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment