...
This example shows console, WinForms and Gtk versions of "Hello, world!".
Console
| Code Block |
|---|
print( "Hello, world!") |
WinForms
| Code Block |
|---|
import System.Windows.Forms f = Form(Text: "Hello, boo!") f.Controls.Add(Button(Text: "Click Me!", Dock: DockStyle.Fill)) Application.Run(f) |
...
