fortran-src icon indicating copy to clipboard operation
fortran-src copied to clipboard

Reprinter deletes spaces from FORMAT statement

Open foxtran opened this issue 6 years ago • 0 comments

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

foxtran avatar Jan 10 '20 11:01 foxtran