fortran-src
fortran-src copied to clipboard
Reprinter deletes spaces from FORMAT statement
I have tried to reprint the following code:
program main
print 9000
9000 FORMAT('HELLO, WORLD!')
end
And it returns the following code without any spaces in FORMAT statement:
program main
print 9000
9000 format ('hello,world!')
end