5
votes
Nested for loops in different languages
Using NestedLoops() from Algorithm-Loops which can be used in different ways (calling a code ref or returning an iterator). …
2
votes
Factorial Algorithms in different languages
Perl (Y-combinator/Functional)
print sub {
my $f = shift;
sub {
my $f1 = shift;
$f->( sub { $f1->( $f1 )->( @_ ) } )
}->( sub {
my $f2 …
