Created
July 23, 2020 09:42
-
-
Save steven2358/78c341b8806281046959b57658c3eb71 to your computer and use it in GitHub Desktop.
Python Hello World - Empty file template with main() function.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
def main(): | |
print('Hello world!') | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment