Created
February 8, 2018 21:32
-
-
Save arisawali2014/3fb45e6fb056666feb57d55012cbc267 to your computer and use it in GitHub Desktop.
This file contains 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
import flask | |
from flask import * | |
app = Flask(__name__) | |
@app.route('/') | |
def index(): | |
return 'Cara Kode!' | |
if __name__ == '__main__': | |
app.run(debug=True, port=80) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment