I want to display the progress of a calculation done with a DO-loop, on the console screen. I can print out the progress variable to the terminal like this:
OPEN(6,CARRIAGECONTROL ='FORTRAN') DO I=1,5 WRITE(6,'(1H+" ",I)') I ENDDO