😄 thanks Wilfrid once again. I solved the bug like this: Opend one project in other folder. Added one source file. Writed one program, and intendeed put Fortran wrong statment. Compiled and the output presented some error. Then i gave doule click in error and now the cursor moved to line the source program as expected.
Actually i think that the mistake was the name the folder. The one is
Cópia_Dell. The accent letter 'ó' assume produced the error.
Run the program follow and all rigth!!!
program sure
implicit none
integer n
parameter (n=10)
integer i,j
real*8 h(n,n)
do i=1,n
do j=1,n
h(i,j)=0.0
enddo
enddo
do i=1,n
do j=1,n
h(i,j)= h(i,j)+ i+j
enddo
enddo
write (*, 30) ((h(i,j),j=1,n),i=1,n)
30 format (<n>f8.2)
stop
end
Only caused me surprise the compile unknow statement specificator Format Variable as:
write (*, 30) ((h(i,j),j=1,n),i=1,n)
30 format (<n>f8.2)
the compile registred ;
C:\Users\Julio\Documents\Restos\certo1.FOR(24) : error 274 - Unknown edit descriptor '<', or missing comma
I already have used many times in old program and work.
WHAT IS WRONG WITH FORMAT???
Anybody can help me? I thank.
regards
Jhonny