RosettaCodeData/Task/Roman-numerals-Encode/Perl-6/roman-numerals-encode-2.pl6

4 lines
44 B
Raku
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
for 1 .. 2_010 -> $x {
say roman($x);
}