Add main.py

This commit is contained in:
2026-03-09 18:22:46 +00:00
parent 99ba0392bb
commit 24e93ea608

7
main.py Normal file
View File

@@ -0,0 +1,7 @@
# Test Project
def hello():
print("Hello, World\!")
if __name__ == "__main__":
hello()