From 0876e01a876b7e4a1cc523d2af1524663106f22f Mon Sep 17 00:00:00 2001 From: Aaron Smith Date: Mon, 7 Dec 2020 15:18:07 -0600 Subject: Format output --- challenge-090/aaronreidsmith/raku/ch-2.raku | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-090/aaronreidsmith/raku/ch-2.raku b/challenge-090/aaronreidsmith/raku/ch-2.raku index cc85350dc6..fa5fe375c6 100644 --- a/challenge-090/aaronreidsmith/raku/ch-2.raku +++ b/challenge-090/aaronreidsmith/raku/ch-2.raku @@ -12,7 +12,7 @@ sub generate-pairs($a, $b) { } sub MAIN(PositiveInt $A, PositiveInt $B) { - say "Input: A: $A, B: $B"; + say "Input: A=$A, B=$B"; say "Divide A by 2 (ignoring remainders) until it is 1. Multiply B by 2 as we go:"; my @pairs = generate-pairs($A, $B); say "Then, wherever A is odd, we add the Bs together:"; -- cgit