Add wxPython (#1258)
* Create wxPython.py * Update readme.md * language count
This commit is contained in:
@@ -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!
|
Make sure to see [contributing.md](/contributing.md) for instructions on contributing to the project!
|
||||||
|
|
||||||
<!--Languages start-->
|
<!--Languages start-->
|
||||||
## Languages (873 total)
|
## Languages (874 total)
|
||||||
|
|
||||||
* [!@#$%^&*()_+](%23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B)
|
* [!@#$%^&*()_+](%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)
|
* [():;#?!](%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)
|
* [wowLang](w/wowLang.wow)
|
||||||
* [Wren](w/Wren.wren)
|
* [Wren](w/Wren.wren)
|
||||||
* [WSH](w/WSH.vbs)
|
* [WSH](w/WSH.vbs)
|
||||||
|
* [wxPython](w/wxPython.py)
|
||||||
* [X D](x/X%20D.xd)
|
* [X D](x/X%20D.xd)
|
||||||
* [XBase++](x/XBase%2B%2B.prg)
|
* [XBase++](x/XBase%2B%2B.prg)
|
||||||
* [XBase](x/XBase.dbf)
|
* [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()
|
||||||
Reference in New Issue
Block a user