Jump to content

Loops/For with a specified step: Difference between revisions

m
m (→‎{{header|Wren}}: Minor tidy)
imported>Arakov
Line 1,233:
 
=={{header|Elena}}==
ELENA 46.x
<syntaxhighlight lang="elena">public program()
{
for(int i := 2,; i <= 8,; i += 2 )
{
console.writeLine:(i)
}
}</syntaxhighlight>
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.