This is the code for a simple console project, that prints "Hello, World!" to STDOUT, and exits with an exit code of 0
[<EntryPoint>]
let main argv =
printfn "Hello, World!"
0
Example breakdown Line-by-line:
[<EntryPoint>] - A .net Attribute that m...