Loops/For with a specified step: Difference between revisions

added Julia example
m (Applesoft BASIC)
(added Julia example)
Line 526:
output += 'who do we appreciate?';
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}}==
Anonymous user