Skip to content

Instantly share code, notes, and snippets.

@arisawali2014
Created February 8, 2018 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arisawali2014/3fb45e6fb056666feb57d55012cbc267 to your computer and use it in GitHub Desktop.
Save arisawali2014/3fb45e6fb056666feb57d55012cbc267 to your computer and use it in GitHub Desktop.
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