Created
August 6, 2018 13:10
-
-
Save remyleone/8ae9347825eb6c44e764425f367d1c2e to your computer and use it in GitHub Desktop.
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 hello_plop(): | |
| print("Coucou from plop") |
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
| from plop import hello_plop | |
| def hello_plup(): | |
| print("Coucou from plup") | |
| if __name__ == '__main__': | |
| hello_plup() | |
| hello_plop() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment