Skip to content

Commit 4c4de48

Browse files
committed
Fix fudging
1 parent 51e1489 commit 4c4de48

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

integration/advent2009-day23.t

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,10 @@ is @all-nodes, ["c", "b", "d", "a", "e"], 'In order tree traversal with gather/t
7070
my @powers-of-two = 1, 2, 4 ... *; # geometric seq
7171
is @powers-of-two[7], 128, 'powers of two';
7272

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

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

0 commit comments

Comments
 (0)