Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BlackFoxgamingstudio/6d3c48e3df54363ac6539019f166054c to your computer and use it in GitHub Desktop.
Save BlackFoxgamingstudio/6d3c48e3df54363ac6539019f166054c to your computer and use it in GitHub Desktop.
test PYthon
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return "Hello World!"
app.run(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment