Created
April 20, 2017 11:16
-
-
Save shlee322/2f486359dfd3d9d900d4447d0a0a41ad to your computer and use it in GitHub Desktop.
test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from flask import Flask | |
| app = Flask(__name__) | |
| @app.route('/') | |
| def hello_world(): | |
| return 'Hello, World!' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment