GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Wednesday, December 22, 2010

Swing Application From Jython

>>> from javax.swing import *
>>> def hello():
...     frame = JFrame("Holla, Jython")
...     frame.setSize(400,300)
...     frame.setLocation(200,100)
...     frame.show()
... 
>>> hello()
             

Share/Bookmark

No comments:

Post a Comment