RosettaCodeData/Task/Hello-world-Graphical/F-Sharp/hello-world-graphical.fs

8 lines
125 B
Forth

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