Add new challenge

This commit is contained in:
abregman
2019-12-21 13:26:41 +02:00
parent 0f871e9b9e
commit 979d11d13f
17 changed files with 188 additions and 13 deletions

View File

@ -0,0 +1,9 @@
#!/usr/bin/env python
# coding=utf-8
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'