RosettaCodeData/Task/Binary-digits/Perl/binary-digits.pl

4 lines
43 B
Raku

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