Hello,
I have the console application developed to handle large data. Since it takes longer time, I wanted to report % completion. Attached the simple code I tested. Unfortunately, TL4 doesn't work, but it keeps printing continuously (as if TL4 is not added in the format). Can someone help me fixing this?
Thanks,
Mohan
!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
PROGRAM test
IMPLICIT NONE
INTEGER :: i
WRITE(*,'(A,$)') 'Completion ... 0%'
DO i = 1,10000
WRITE(*,'(TL4,I3,A,$)') INT(i*100/10000),'%'
END DO
WRITE(*,*)
END PROGRAM test



