aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-071/luca-ferrari/raku/ch-1.p64
1 files changed, 2 insertions, 2 deletions
diff --git a/challenge-071/luca-ferrari/raku/ch-1.p6 b/challenge-071/luca-ferrari/raku/ch-1.p6
index 5c32e33fa5..48f0e1e993 100644
--- a/challenge-071/luca-ferrari/raku/ch-1.p6
+++ b/challenge-071/luca-ferrari/raku/ch-1.p6
@@ -20,6 +20,6 @@ sub MAIN( Int $N where { $N > 1 } ) {
|| ( $neighbour-right && $current > $neighbour-right );
}
- @array.say;
- @peak.say;
+ "Array: { @array }".say;
+ "Peak: { @peak }".say;
}