Created
April 6, 2017 15:08
-
-
Save mattmc3/09d9894a47dc3c033fa159d74d1a1c1f to your computer and use it in GitHub Desktop.
Python2 hello world
This file contains hidden or 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 -*- | |
| """ | |
| DOCSTRING | |
| """ | |
| from __future__ import print_function | |
| from __future__ import unicode_literals | |
| from __future__ import division | |
| from __future__ import absolute_import | |
| #import blah | |
| 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