Oh wow, you're right, I totally missed that. Somehow I thought CONTINUE in Fortran is like continue in C and other C-likes, and didn't pay attention to the output.
Turns out CONTINUE in Fortran does literally nothing, and it's only used as placeholder (like Python pass).
The correct thing seems to be CYCLE instead of CONTINUE.
Oh wow, you're right, I totally missed that. Somehow I thought
CONTINUEin Fortran is likecontinuein C and other C-likes, and didn't pay attention to the output.Turns out
CONTINUEin Fortran does literally nothing, and it's only used as placeholder (like Pythonpass).The correct thing seems to be
CYCLEinstead ofCONTINUE.I just tried CYCLE and indeed:
By the way thanks for the terrific "speedrun". I'm looking forward to reading it all.