F programming language
Updated: 11/16/2019 by Computer Hope
The F programming language, also known as F, is used to write computer programs that have scientific applications. It is a modern subset of the Fortran programming language, and it is backward-compatible Fortran 77.
Hello, World! written in F
Below is the code to write "Hello World!" in the F programming language.
program hello print *, "Hello World!" end program hello