Difference between revisions of "FORTRAN"

From Computer History Wiki
Jump to: navigation, search
(Dialects)
(Hello World)
Line 12: Line 12:
 
This is a simple FORTRAN program.
 
This is a simple FORTRAN program.
 
<pre>
 
<pre>
 +
C23456789012345678901234567890
 
       program hello  
 
       program hello  
 
       print *, 'Hello!'  
 
       print *, 'Hello!'  

Revision as of 16:52, 6 August 2010

Fortran, better known as a "FORmula TRANslator". It's primary use was in Scientific and Engineering disciplines.

Dialects

There have been several popular versions of Fortran, namely:

  • FORTRAN IV
  • FORTRAN 66
  • FORTRAN 77
  • FORTRAN 90
  • FORTRAN 95

Hello World

This is a simple FORTRAN program.

C23456789012345678901234567890
      program hello 
      print *, 'Hello!' 
      end

Folk lore

Fortran is popular from the old rant "Real Programmers Don't Use Pascal".

Popular Compilers

Popular Fortran Programs