in Fortran there are Named Loops but I have not found this function in Julia. Is there a way to do named loops? So that the compiler checks if the end statement corresponds to the correct loop start? Thx for help
For example:
counting: for i = 1:5
println(i)
end counting