15 lines
274 B
D
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();
|
|
}
|