add demo app

This commit is contained in:
Torma Kristóf 2020-10-27 15:13:47 +01:00
parent e39f79a62b
commit 31dd67da41
1 changed files with 7 additions and 0 deletions

7
app.py Normal file
View File

@ -0,0 +1,7 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def calculate-hard():
result = 3 * 4 + 12
return str(result)