initial commit

This commit is contained in:
Arian Nasr
2026-02-24 21:30:47 -05:00
commit b7844558ac
2 changed files with 13 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/.idea/

12
app.py Normal file
View File

@@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world(): # put application's code here
return 'Hello World!'
if __name__ == '__main__':
app.run()