Skip to content

Instantly share code, notes, and snippets.

@pythonanywhere
Last active December 12, 2015 03:19
Show Gist options
  • Save pythonanywhere/4706447 to your computer and use it in GitHub Desktop.
Save pythonanywhere/4706447 to your computer and use it in GitHub Desktop.
Multi-file gist for testing
from file2 import display
if __name__ == "__main__":
display("Hello from file1 in multi-file gist")
def display(s):
print (s)
if __name__ == "__main__":
display("Hello from file2 in multi-file gist")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment