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