Files
Phoenix/samples/simple/hello.py
Robin Dunn 0628e885d1 print the version at startup
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@66475 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2010-12-27 20:51:02 +00:00

11 lines
217 B
Python

import wxPhoenix as wx
print wx.version()
#import os; print 'PID:', os.getpid(); raw_input('Ready to start, press enter...')
app = wx.App()
frm = wx.Frame(None, title="Hello World!")
frm.Show()
app.MainLoop()