9 lines
172 B
Forth
9 lines
172 B
Forth
|
// Learn more about F# at http://fsharp.org
|
||
|
|
||
|
open System
|
||
|
|
||
|
[<EntryPoint>]
|
||
|
let main argv =
|
||
|
printfn "Hello World from F#!"
|
||
|
0 // return an integer exit code
|