Integer sequence: Difference between revisions

add Necromantus
(Rename Perl 6 -> Raku, alphabetize, minor clean-up)
(add Necromantus)
Line 1,379:
i += 1
end</lang>
 
=={{header|Necromantus}}==
In Necromantus integer size is limited by the java's int.
<lang Necromantus>
let i = 0;
while true
{
write(i);
i = i + 1;
}
</lang>
 
=={{header|NetRexx}}==