summaryrefslogtreecommitdiff
path: root/gtk/hello.cs
blob: 0ff35cecd84a23f1b59a8326e5f60e627303744d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using Gtk;
using System;

class Hello
{
  static void Main()
  {
    Application.Init();
    Window window = new Window("Hello, world!");
    window.Show();
    Application.Run();
  }
}