Created
August 17, 2012 16:34
-
-
Save davidboy/3380418 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Gtk; | |
int main(string[] args) { | |
Gtk.init (ref args); | |
try { | |
var builder = new Builder (); | |
builder.add_from_file ("crux.glade"); | |
var window = builder.get_object ("other_window") as Window; | |
window.show_all (); | |
Gtk.main (); | |
} catch (Error e) { | |
return 1; | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment