6 lines
113 B
Python
6 lines
113 B
Python
import wx
|
|
|
|
app = wx.App(False)
|
|
frame = wx.Frame(None, wx.ID_ANY, "Hello, World")
|
|
frame.Show(True)
|
|
app.MainLoop()
|