From 27ba8ab59ef1e72516c45a2068ecd29e8dac520d Mon Sep 17 00:00:00 2001 From: spikey Date: Sat, 24 Feb 2024 10:40:08 -0500 Subject: [PATCH] first thing --- main.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 main.py diff --git a/main.py b/main.py new file mode 100755 index 0000000..82923f7 --- /dev/null +++ b/main.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 +from flask import Flask + +app = Flask(__name__) + +@app.route("/") +def hello_world(): + return "

Hello, World!

" + +app.run()