Fortran Examples





Generated by AI, corrected by PeatSoft

  1. Hello World
    This is the simplest program in Fortran that prints "Hello, World!" to the console.
    
    program hello
        print *, 'Hello, World!'
    end program hello