RosettaCodeData/Task/Hello-world-Graphical/F-Sharp/hello-world-graphical.fs
2023-07-01 13:44:08 -04:00

7 lines
125 B
FSharp

#light
open System
open System.Windows.Forms
[<EntryPoint>]
let main _ =
MessageBox.Show("Hello World!") |> ignore
0