View difference between Paste ID: EkUdTcMB and cVgdHBLL
SHOW: | | - or go back to the newest paste.
1
open System
2
open System.Windows.Forms
3
4-
let form = new Form(Text = "Sono una cosa inutile :D!", Width = 800, Height = 600)
4+
let form = new Form()
5
6
form.Text <- "Sono una cosa inutile :D!"
7
form.Width <- 800
8
form.Height <- 600
9
10
[<STAThread>]
11
do Application.Run (form)