open System
let display message =
printfn "%s" message
[<EntryPoint>]
let main(args) =
display "Hello, F#"
0
open System
let display message =
printfn "%s" message
[<EntryPoint>]
let main(args) =
display "Hello, F#"
0
Isn’t “Hello, World” from an imperative world?
Well, F# is a multi-paradigm language. It supports both functional imperative style of programming.