You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# same thing:
sub first-is-largest(@a) {
my :($first, *@rest) := \(|@a);
~~~~~~~~~~This line is not working in rakudo
return $first >= all(@rest);
}
(17:06:38) woosley: rakudo: @A = 2, 3, 4; my :($f, *$o) := (|@A); say $f.perl
(17:06:41) p6eval: rakudo 549d2a: OUTPUT«===SORRY!===Malformed my at line 22, near ":($f, $o) "»
The text was updated successfully, but these errors were encountered:
(17:06:38) woosley: rakudo: @A = 2, 3, 4; my :($f, *$o) := (|@A); say $f.perl
(17:06:41) p6eval: rakudo 549d2a: OUTPUT«===SORRY!===Malformed my at line 22, near ":($f, $o) "»
The text was updated successfully, but these errors were encountered: