/* pracuje se na tom... compile with mcs hello.cs -pkg:gtk-sharp-2.0 mono hello.exe */ using Gtk; using System; class Hello { static void Main() { Application.Init (); Window window = new Window ("helloworld"); window.Show(); Application.Run (); } }