Add Flask

Fixes: #710
Co-Authored-By: Parth Waidya <parthwaidya@gmail.com>
This commit is contained in:
Richie Bendall
2020-03-30 07:38:07 +13:00
parent d1c60e2867
commit 35bf6f94ac
2 changed files with 10 additions and 0 deletions

View File

@@ -218,6 +218,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Fim++](f%5Cfim%2B%2B.fimpp)
* [Fish](f%5Cfish.fish)
* [Fjoelnir](f%5Cfjoelnir.fjo)
* [Flask](f%5Cflask.py)
* [Fob](f%5Cfob.fob)
* [Focal](f%5Cfocal.fc)
* [Fog.Fog](f%5Cfog.fog.md)

9
f/flask.py Normal file
View File

@@ -0,0 +1,9 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World"
if __name__ == "__main__":
app.run()