Difference between revisions of "FORTRAN"
From Computer History Wiki
m |
|||
Line 7: | Line 7: | ||
*FORTRAN 90 | *FORTRAN 90 | ||
*FORTRAN 95 | *FORTRAN 95 | ||
+ | |||
+ | == Hello World == | ||
+ | This is a simple FORTRAN program. | ||
+ | <pre> | ||
+ | program hello | ||
+ | print *, 'Hello!' | ||
+ | end | ||
+ | </pre> | ||
{{stub}} | {{stub}} | ||
[[Category:Languages]] | [[Category:Languages]] |
Revision as of 02:51, 26 October 2009
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 66
- FORTRAN 77
- FORTRAN 90
- FORTRAN 95
Hello World
This is a simple FORTRAN program.
program hello print *, 'Hello!' end