diff options
| author | Aaron Smith <asmith@sumologic.com> | 2020-12-07 15:18:07 -0600 |
|---|---|---|
| committer | Aaron Smith <asmith@sumologic.com> | 2020-12-07 15:18:07 -0600 |
| commit | 0876e01a876b7e4a1cc523d2af1524663106f22f (patch) | |
| tree | e0374c4dfc4039d9b9efaae81d2d60afb73d6aec | |
| parent | f3bc094d3c6a7cfafdcdcb64298cb078a90e6d66 (diff) | |
| download | perlweeklychallenge-club-0876e01a876b7e4a1cc523d2af1524663106f22f.tar.gz perlweeklychallenge-club-0876e01a876b7e4a1cc523d2af1524663106f22f.tar.bz2 perlweeklychallenge-club-0876e01a876b7e4a1cc523d2af1524663106f22f.zip | |
Format output
| -rw-r--r-- | challenge-090/aaronreidsmith/raku/ch-2.raku | 2 |
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:"; |
