Last active
April 7, 2018 23:15
-
-
Save marquesds/da40a6d1e2229aa93c3efbf2f3aab17d to your computer and use it in GitHub Desktop.
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 hello(): | |
ola() | |
print("Hello!") | |
def ola(): | |
hola() | |
print("Olá!") | |
def hola(): | |
print("¡Hola!") | |
if __name__ == '__main__': | |
hello() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment