From 4e3abf1f615f6e5aa4fd6880ebe013a9a5ca3540 Mon Sep 17 00:00:00 2001 From: Ali RajabNezhad Date: Sun, 1 Oct 2023 23:36:15 +0330 Subject: [PATCH] Add Panther (#1509) * Add Panther * Update readme.md --- p/Panther.py | 11 +++++++++++ readme.md | 3 ++- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 p/Panther.py diff --git a/p/Panther.py b/p/Panther.py new file mode 100644 index 000000000..651824993 --- /dev/null +++ b/p/Panther.py @@ -0,0 +1,11 @@ +import sys +from panther import Panther +from panther.app import API + + +@API() +def hello_world(): + return 'Hello World' + + +app = Panther(__name__, configs=sys.modules[__name__], urls={'/': hello_world}) diff --git a/readme.md b/readme.md index c3088b059..e86d320b4 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 (997 total) +## Languages (998 total) * [!](%23/%21) * [!@#$%^&*()_+](%23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B) @@ -679,6 +679,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Painter Programming](p/Painter%20Programming) * [Pakhi](p/Pakhi.pakhi) * [Pangaea](p/Pangaea.pangaea) +* [Panther](p/Panther.py) * [ParaSail](p/ParaSail.psi) * [Parenthetic](p/Parenthetic.p) * [Parser](p/Parser.p)