RosettaCodeData/Task/Binary-digits/Perl/binary-digits.pl
2023-07-01 13:44:08 -04:00

3 lines
43 B
Raku

for (5, 50, 9000) {
printf "%b\n", $_;
}