Name: W.T. Crackers 2016-09-02 0:44
Perl is king and here is the proof:
sub _ (&;@) {
my $f = shift;
my $x = sub {
my $x = shift;
sub { &$f(@_, &$x($x)) };
};
&$f(@_, &$x($x));
}