Mitch Richling: Example FORTRAN 77 Programs
Author: | Mitch Richling |
Updated: | 2023-11-15 |
Table of Contents
1. Introduction
Did someone just ask you to update a 30 year old FORTRAN 77 program? If so, then you may be in the right place. Here you will find several small, but complete, FORTRAN 77 programs illustrating many common language concepts and constructs. The intent is to give programmers with no FORTRAN 77 experience a core set of fundamental examples to help them get up to speed quickly on this venerable language. If you really want to become an expert FORTRAN 77 programmer, then the best way is to look at quality code – check out the BLAS and LAPACK for a start. Good luck.
Get it all on github: https://github.com/richmit/ex-f77/
2. Variable Declarations & Types
3. Various "Variable" Topics
4. I/O
5. Subroutines & Functions
6. Arithmetic
arith.f
- Illustrates some arithmetic concepts in FORTRAN
7. Loops
8. Control Structures
ifth.f
- If-Then and all of its little buddies!
9. Hello World!
hello.f
- A simple hello world program!