Skip to content

Instantly share code, notes, and snippets.

@hanynowsky
Created December 16, 2012 02:52
Show Gist options
  • Save hanynowsky/4302692 to your computer and use it in GitHub Desktop.
Save hanynowsky/4302692 to your computer and use it in GitHub Desktop.
Jambi-Sample
package jambi;
import com.trolltech.qt.gui.*;
public class HellowWorld {
public static void main(String args[]) {
QApplication.initialize(args);
QPushButton hello = new QPushButton("Hello World!");
hello.resize(120, 40);
hello.setWindowTitle("Hello World");
hello.show();
QApplication.execStatic();
QApplication.shutdown();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment