Explore the basics of creating a for loop in Julia to iterate through a range of values.

for i in 1:5
    println("Iteration $i")
end
Share this post