Why not just the for loop itself?
julia> var1 = let x
for i in 1:5
(i == 4) && (x = i; break)
end
x
end
4
Why not just the for loop itself?
julia> var1 = let x
for i in 1:5
(i == 4) && (x = i; break)
end
x
end
4