RosettaCodeData/Task/Hello-world-Graphical/D/hello-world-graphical.d
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

15 lines
274 B
D

import gtk.MainWindow, gtk.Label, gtk.Main;
class GoodbyeWorld : MainWindow {
this() {
super("GtkD");
add(new Label("Goodbye World"));
showAll();
}
}
void main(string[] args) {
Main.init(args);
new GoodbyeWorld();
Main.run();
}