diff --git a/main.hy b/main.hy new file mode 100644 index 0000000..e73d1c0 --- /dev/null +++ b/main.hy @@ -0,0 +1,8 @@ +#!/usr/local/bin/hy + +(import [flask [Flask]]) +(def app (Flask __name__)) +(def hello ((.route app "/") (fn [] "Hello World"))) +(if (= __name__ "__main__") + (.run app)) +