Skip to content

Commit

Permalink
Relax a type check
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Aug 24, 2015
1 parent 8cf16fd commit 32208a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/99problems-11-to-20.t
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ plan 25;
# Given a run-length code list generated as specified in problem P11.
# Construct its uncompressed version.

sub decode(*@list) returns List {
sub decode(*@list) returns Iterable {
gather {
for @list -> $elem {
take $elem.isa(Array) ?? $elem[1] xx $elem[0] !! $elem;
Expand Down

0 comments on commit 32208a6

Please sign in to comment.