Skip to content

Instantly share code, notes, and snippets.

@steven2358
Created July 23, 2020 09:42
Embed
What would you like to do?
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