// PKG-CONFIG: gtk-sharp using Gtk; class Hello { static Main () : void { Application.Init (); def _ = Gdk.Pixbuf("../../doc/styles/logo.png"); def win = Window ("Hehe GTK# z Nemerle"); win.DeleteEvent += OnWindowDelete; win.Show(); Application.Run (); } static OnWindowDelete (_obj : object , _args : DeleteEventArgs) : void { Application.Quit(); } }