Skip to content

Instantly share code, notes, and snippets.

@marquesds
Last active April 7, 2018 23:15
Show Gist options
  • Save marquesds/da40a6d1e2229aa93c3efbf2f3aab17d to your computer and use it in GitHub Desktop.
Save marquesds/da40a6d1e2229aa93c3efbf2f3aab17d to your computer and use it in GitHub Desktop.
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