Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- """
- Author- u/Zer0897
- Version- 2018.5.1
- This program prints the string "Hello, World!" to the console.
- """
- """
- Params-
- None
- Return-
- None
- Function-
- Outputs the string "Hello, World" to console.
- """
- def main():
- print("Hello, World!")
- if __name__ == "__main__":
- main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement