Created
March 21, 2018 23:15
-
-
Save wgottschalk/a89d8fcb14c46e7e3f8c200082aa9356 to your computer and use it in GitHub Desktop.
Demoing hello world in python
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
def greet(): | |
print("Hello World") | |
if __name__ == "__main__": | |
greet() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment