aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Smith <asmith@sumologic.com>2020-12-07 15:18:07 -0600
committerAaron Smith <asmith@sumologic.com>2020-12-07 15:18:07 -0600
commit0876e01a876b7e4a1cc523d2af1524663106f22f (patch)
treee0374c4dfc4039d9b9efaae81d2d60afb73d6aec
parentf3bc094d3c6a7cfafdcdcb64298cb078a90e6d66 (diff)
downloadperlweeklychallenge-club-0876e01a876b7e4a1cc523d2af1524663106f22f.tar.gz
perlweeklychallenge-club-0876e01a876b7e4a1cc523d2af1524663106f22f.tar.bz2
perlweeklychallenge-club-0876e01a876b7e4a1cc523d2af1524663106f22f.zip
Format output
-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:";