til/Development/Python/main.md

10 lines
92 B
Markdown

# main
```python
def main():
print("Hello")
if __name__ == "__main__":
main()
```