Add wxPython (#1258)

* Create wxPython.py

* Update readme.md

* language count
This commit is contained in:
calgary34 2022-01-20 16:56:05 -07:00 committed by GitHub
parent 975bab3818
commit 14b4f84c8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View File

@ -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
View 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()