langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
13
Task/Generator-Exponential/Perl-6/generator-exponential.pl6
Normal file
13
Task/Generator-Exponential/Perl-6/generator-exponential.pl6
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
sub powers($m) { 0..* X** $m }
|
||||
|
||||
my @squares := powers(2);
|
||||
my @cubes := powers(3);
|
||||
|
||||
sub infix:<without> (@orig,@veto) {
|
||||
gather for @veto -> $veto {
|
||||
take @orig.shift while @orig[0] before $veto;
|
||||
@orig.shift if @orig[0] eqv $veto;
|
||||
}
|
||||
}
|
||||
|
||||
say (@squares without @cubes)[20 ..^ 20+10].join(', ');
|
||||
Loading…
Add table
Add a link
Reference in a new issue