[Fortran] 01 Hello World¶ This is our first program to reach out to the programming world! 1 2 3 4 5 6 7PROGRAM HELLO_WORLD IMPLICIT NONE print*, "Hello World" STOP END