Skip to content

Repository created in order to learn basics of Fortran - yet another oldschool language

License

Notifications You must be signed in to change notification settings

pwittchen/learning-fortran

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

learning-fortran

Repository created to learn basics of Fortran - yet another oldschool language

Preparation on Linux

Install GNU Fortran compiler from the GCC, which is a fork of G95:

$ sudo apt-get install gfortran

Compiling and running programs

Create file with name hello.f90 and the following content:

program hello
  print *, "Hello World!"
end program hello

Compile the program with the following command:

$ gfortran -o hello hello.f90

Run the program:

$ ./hello

References

About

Repository created in order to learn basics of Fortran - yet another oldschool language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published