Sha256: 3ea57784c71d32f22bd84674044e7b8ec888c6478b14937eca131940f412bb88
Contents?: true
Size: 485 Bytes
Versions: 17
Compression:
Stored size: 485 Bytes
Contents
using Gtk; int main (string[] args) { Gtk.init (ref args); var foo = new MyFoo<string[](), MyBar<string, int>>(); var window = new Window(); window.title = "Hello, World!"; window.border_width = 10; window.window_position = WindowPosition.CENTER; window.set_default_size(350, 70); window.destroy.connect(Gtk.main_quit); var label = new Label("Hello, World!"); window.add(label); window.show_all(); Gtk.main(); return 0; }
Version data entries
17 entries across 17 versions & 1 rubygems