aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-090/aaronreidsmith/raku/ch-2.raku2
1 files changed, 1 insertions, 1 deletions
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:";