Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix fudging
  • Loading branch information
usev6 committed Apr 17, 2015
1 parent 51e1489 commit 4c4de48
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion integration/advent2009-day23.t
Expand Up @@ -70,8 +70,10 @@ is @all-nodes, ["c", "b", "d", "a", "e"], 'In order tree traversal with gather/t
my @powers-of-two = 1, 2, 4 ... *; # geometric seq
is @powers-of-two[7], 128, 'powers of two';

#?rakudo skip "lists aren't properly lazy in Rakudo yet"
#?rakudo emit #
my @squares-of-odd-numbers = map { $_ * $_ }, @odd-numbers;
#?rakudo skip "lists aren't properly lazy in Rakudo yet"
is @squares-of-odd-numbers[4], 81, 'square of odd numbers';

sub enumerate-positive-rationals() { # with duplicates, but still
take 1;
Expand Down

0 comments on commit 4c4de48

Please sign in to comment.