diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..5c777ff --- /dev/null +++ b/hello.py @@ -0,0 +1,6 @@ +from flask import Flask +app = Flask(__name__) + +@app.route('/') +def index(): + return '

Hello World!

'