Sum multiples of 3 and 5: Difference between revisions

Content added Content deleted
(Rename Perl 6 -> Raku, alphabetize, minor clean-up)
m (→‎{{header|NetRexx}}: Fix links and comments: Perl 6 --> Raku)
Line 2,153: Line 2,153:


=={{header|NetRexx}}==
=={{header|NetRexx}}==
Portions translation of [[#Perl 6|Perl 6]]
Portions translation of [[#Raku|Raku]]
<lang NetRexx>/* NetRexx */
<lang NetRexx>/* NetRexx */
options replace format comments java crossref symbols nobinary
options replace format comments java crossref symbols nobinary
Line 2,171: Line 2,171:


-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- translation of perl 6
-- translation of Raku
method sum_mults(first, limit) public static
method sum_mults(first, limit) public static
last = limit - 1
last = limit - 1