Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
GLRify 99problems-41-to-50.t
  • Loading branch information
dwarring committed Aug 26, 2015
1 parent 978df96 commit e3d35a1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions integration/99problems-41-to-50.t
Expand Up @@ -363,12 +363,12 @@ plan 13;
# cases in p54.lisp.

my @fr = (
['a', 45],
['b', 13],
['c', 12],
['d', 16],
['e', 9 ],
['f', 5 ],
$['a', 45],
$['b', 13],
$['c', 12],
$['d', 16],
$['e', 9 ],
$['f', 5 ],
);

my %expected = (
Expand All @@ -389,7 +389,7 @@ plan 13;
@c = sort { $^a[1] <=> $^b[1] || $^a[0] cmp $^b[0] }, @c;
my $a = shift @c;
my $b = shift @c;
unshift @c, [[$a[0], $b[0]], $a[1] + $b[1]];
unshift @c, $[ $[$a[0], $b[0]], $a[1] + $b[1]];
}

my %res;
Expand Down

0 comments on commit e3d35a1

Please sign in to comment.