Files
cloud-demo/app.py
Torma Kristóf b4458ae536
All checks were successful
continuous-integration/drone/push Build is passing
fixed math
2020-10-28 19:57:21 +01:00

9 lines
130 B
Python

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