# HG changeset patch # User Paul Boddie # Date 1105662850 -3600 # Node ID 2471e7f796859bb33512853e2c8e0d4098064410 # Parent fdee374b61f4e1dfb6b1c1332f047a8be152fdfc Added a main method. diff -r fdee374b61f4 -r 2471e7f79685 examples/Tkinter/Application.java --- a/examples/Tkinter/Application.java Fri Jan 14 01:33:42 2005 +0100 +++ b/examples/Tkinter/Application.java Fri Jan 14 01:34:10 2005 +0100 @@ -34,4 +34,9 @@ this.hiThere.__setitem__("command", sayHello); this.hiThere.pack(); } + + public static void main(String[] args) { + Application app = new Application(); + app.mainloop(); + } }