Loops/For with a specified step: Difference between revisions

Content added Content deleted
m (Applesoft BASIC)
(added Julia example)
Line 526: Line 526:
output += 'who do we appreciate?';
output += 'who do we appreciate?';
document.write(output);</lang>
document.write(output);</lang>

=={{header|Julia}}==
<lang julia>for i in 2:2:8
print(i, ", ")
end
println("whom do we appreciate?")</lang>


=={{header|LabVIEW}}==
=={{header|LabVIEW}}==