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

8 lines
125 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#light
open System
open System.Windows.Forms
[<EntryPoint>]
let main _ =
MessageBox.Show("Hello World!") |> ignore
0