Programming languages

F#

A strongly typed, functional-first programming language that enables developers to tackle complex computing problems with simple, maintainable, and robust code.

Share this starting point code.study/fsharp
Created by
Don Syme
First appeared
2005
Official resource
Visit the main website

Your first program

Hello, World!

F#
open System

[<EntryPoint>]
let main argv =
    Console.WriteLine("Hello, World!")
    0 // return an integer exit code