From b600c7a2226089c8f347f91769c63f9d9460cc68 Mon Sep 17 00:00:00 2001 From: Joelle Maslak Date: Sun, 14 Apr 2019 14:47:09 -0500 Subject: Get rid of extra spaces --- challenge-003/joelle-maslak/perl6/ch-2.p6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-003/joelle-maslak/perl6/ch-2.p6 b/challenge-003/joelle-maslak/perl6/ch-2.p6 index 3200dfc2bf..e45424fc44 100755 --- a/challenge-003/joelle-maslak/perl6/ch-2.p6 +++ b/challenge-003/joelle-maslak/perl6/ch-2.p6 @@ -16,7 +16,7 @@ sub MAIN(Int:D $rows where $rows ≥ 3) { } @rows.push: @row; - say (" " x $rows - $i) ~ @row.map( { $^a.fmt("%3d") } ).join(" "); + say (" " x $rows - $i - 1) ~ @row.map( { $^a.fmt("%3d") } ).join(" "); } } -- cgit