mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-06 13:18:20 +00:00
19 lines
289 B
Plaintext
19 lines
289 B
Plaintext
|
Window $Main using=Gtk {
|
||
|
VBox {
|
||
|
Label label="hello world";
|
||
|
HBox {
|
||
|
Button label="Install";
|
||
|
Button label="Update";
|
||
|
Button label="Deinstall";
|
||
|
}
|
||
|
}
|
||
|
-{
|
||
|
public static void main(string[] args) {
|
||
|
Gtk.init (ref args);
|
||
|
var m = new Main ();
|
||
|
m.show_all();
|
||
|
Gtk.main();
|
||
|
}
|
||
|
}-
|
||
|
}
|