Files
test-project/main.py
2026-03-09 18:22:46 +00:00

8 lines
97 B
Python

# Test Project
def hello():
print("Hello, World\!")
if __name__ == "__main__":
hello()