Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

I'm trying to learn JavaScript

Name: Anonymous 2018-10-25 12:02

That is what I wrote so far:
https://jsfiddle.net/Nikita_Sadkov/4h72j5s6/

Name: Anonymous 2020-06-07 17:38

>>43
Bullshit.
var Y = function (F) {
return (function (x) {
return F(function (y) { return (x(x))(y);});
})
(function (x) {
return F(function (y) { return (x(x))(y);});
});
};

var FactGen = function (fact) {
return (function(n) {
return ((n == 0) ? 1 : (n*fact(n-1))) ;
});
};

(Y(FactGen))(6);

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List