From fb54e6b837308946062fba5161b7199313ce85f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=A0=D0=BE=D0=BC?= =?UTF-8?q?=D0=B0=D0=BD=D0=BE=D0=B2?= Date: Thu, 11 Jun 2026 14:50:17 +0000 Subject: [PATCH] Add main.py --- main.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..168d220 --- /dev/null +++ b/main.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python3 +""" +Simple script that prints "Hello World". +""" + +if __name__ == "__main__": + print("Hello World") \ No newline at end of file