Newer
Older
langhist-study / src / hello.f
@HIROSE Yuuji HIROSE Yuuji on 31 Oct 2019 180 bytes Add source files initially
!
!  HELLO
!

      PROGRAM main
      write(*, *) 'Hello, world!'
      write(*, '(A)') 'Hello, world!'
      write(*, 99) 'Hello, world!'
 99   FORMAT (A)
      END PROGRAM main