15 lines
299 B
Text
15 lines
299 B
Text
use Qt;
|
|
|
|
bundle Default {
|
|
class QtExample {
|
|
function : Main(args : String[]) ~ Nil {
|
|
app := QAppliction->New();
|
|
win := QWidget->New();
|
|
win->Resize(400, 300);
|
|
win->SetWindowTitle("Goodbye, World!");
|
|
win->Show();
|
|
app->Exec();
|
|
app->Delete();
|
|
}
|
|
}
|
|
}
|