Skip to content

Instantly share code, notes, and snippets.

@Rhyanz46
Created October 13, 2019 09:58
Show Gist options
  • Save Rhyanz46/92a7ac66472d54db45a865228cd6d7c6 to your computer and use it in GitHub Desktop.
Save Rhyanz46/92a7ac66472d54db45a865228cd6d7c6 to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask("aplikasi saya")
@app.route('/')
def index():
return 'hello'
if __name__ == '__main__':
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment