Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #13 from KrisShannon/integration-01-fixes
Some small cleanups and logic fixes in integration/99problems-01-to-10.t
  • Loading branch information
KrisShannon committed Jan 1, 2012
2 parents 6c5c1dd + 1449cac commit 041da7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration/99problems-01-to-10.t
Expand Up @@ -167,7 +167,7 @@ plan 22;

#?rakudo todo 'unknown'
is pack(<a a a a b c c a a d e e e e>).join('+'),
'<a a a a+b+c c+a a+d+e e e e',
'a a a a+b+c c+a a+d+e e e e',
'We should be able to pack lists';

# From Larry, http://perlmonks.org/?node_id=590147
Expand All @@ -186,8 +186,8 @@ plan 22;
}
}
}
is group(<a a a a b c c a a d e e e e>),
[ [<a a a a>], [<b>], [<c c>], [<a a>], [<d>], [<e e e e>] ],
is group(<a a a a b c c a a d e e e e>).join('+'),
'a a a a+b+c c+a a+d+e e e e',
'... even using gather/take';
}
#?rakudo skip 'groupless gather/take'
Expand Down

0 comments on commit 041da7e

Please sign in to comment.