mirror of
https://github.com/octocat/Hello-World.git
synced 2026-06-04 14:17:09 +00:00
Merge 57c91c093f into 7fd1a60b01
This commit is contained in:
commit
3e4dd6dda4
14
hello.py
Normal file
14
hello.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/env python3
|
||||
"""
|
||||
Hello World Python Script
|
||||
|
||||
A simple Python script that prints a greeting message.
|
||||
"""
|
||||
|
||||
def main():
|
||||
"""Main function that prints a hello world message."""
|
||||
print("Hello, World!")
|
||||
print("Welcome to the octocat/hello-world repository!")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Loading…
Reference in New Issue
Block a user