RosettaCodeData/Task/Binary_digits/Perl/binary_digits.pl

4 lines
43 B
Raku

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