Skip to content

Instantly share code, notes, and snippets.

@jperras
Created May 17, 2009 03:13
Show Gist options
  • Save jperras/112903 to your computer and use it in GitHub Desktop.
Save jperras/112903 to your computer and use it in GitHub Desktop.
<?php
function Y($F) {
return current(array(function($f) {
return $f($f);
}))->__invoke(function($f) use ($F) {
return $F(function($x) use ($f) {
return $f($f)->__invoke($x);
});
});
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment