From 14b4f84c8c5330e1bf57bba4fe8cf3ebd9ed363f Mon Sep 17 00:00:00 2001 From: calgary34 <51468959+calgary34@users.noreply.github.com> Date: Thu, 20 Jan 2022 16:56:05 -0700 Subject: [PATCH] Add wxPython (#1258) * Create wxPython.py * Update readme.md * language count --- readme.md | 3 ++- w/wxPython.py | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 w/wxPython.py diff --git a/readme.md b/readme.md index 8559f64c..c9f2c0f0 100644 --- a/readme.md +++ b/readme.md @@ -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 (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) diff --git a/w/wxPython.py b/w/wxPython.py new file mode 100644 index 00000000..b5b4d5b6 --- /dev/null +++ b/w/wxPython.py @@ -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()