2cf0675270
* add F# templates to `dotnet new` * add dotnet new tests * avoid conflict with cs test dir * fix test
8 lines
165 B
Forth
8 lines
165 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
|