Last active
December 12, 2015 03:19
-
-
Save pythonanywhere/4706447 to your computer and use it in GitHub Desktop.
Multi-file gist for testing
This file contains 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
from file2 import display | |
if __name__ == "__main__": | |
display("Hello from file1 in multi-file gist") |
This file contains 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 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