Add wxPython (#1258)
* Create wxPython.py * Update readme.md * language count
This commit is contained in:
parent
975bab3818
commit
14b4f84c8c
@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every
|
||||
Make sure to see [contributing.md](/contributing.md) for instructions on contributing to the project!
|
||||
|
||||
<!--Languages start-->
|
||||
## Languages (873 total)
|
||||
## Languages (874 total)
|
||||
|
||||
* [!@#$%^&*()_+](%23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B)
|
||||
* [():;#?!](%23/%28%29%CB%B8%3B%23%EF%BC%9F%21)
|
||||
@ -849,6 +849,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib
|
||||
* [wowLang](w/wowLang.wow)
|
||||
* [Wren](w/Wren.wren)
|
||||
* [WSH](w/WSH.vbs)
|
||||
* [wxPython](w/wxPython.py)
|
||||
* [X D](x/X%20D.xd)
|
||||
* [XBase++](x/XBase%2B%2B.prg)
|
||||
* [XBase](x/XBase.dbf)
|
||||
|
8
w/wxPython.py
Normal file
8
w/wxPython.py
Normal file
@ -0,0 +1,8 @@
|
||||
import wx
|
||||
|
||||
app = wx.App()
|
||||
window = wx.Frame(None)
|
||||
panel = wx.Panel(window)
|
||||
label = wx.StaticText(panel, label = "Hello World")
|
||||
window.Show(True)
|
||||
app.MainLoop()
|
Loading…
x
Reference in New Issue
Block a user