Skip to content

Instantly share code, notes, and snippets.

@steven2358
Created July 23, 2020 09:42
Show Gist options
  • Save steven2358/78c341b8806281046959b57658c3eb71 to your computer and use it in GitHub Desktop.
Save steven2358/78c341b8806281046959b57658c3eb71 to your computer and use it in GitHub Desktop.
Python Hello World - Empty file template with main() function.
#!/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