Skip to content

Instantly share code, notes, and snippets.

@martin-martin
Last active June 13, 2018 08:41
Show Gist options
  • Save martin-martin/e828bacd09542bc87a509a38b6760dfb to your computer and use it in GitHub Desktop.
Save martin-martin/e828bacd09542bc87a509a38b6760dfb to your computer and use it in GitHub Desktop.
name = "Mycroft"
def print_name_box():
print(name)
def smaller_box():
print(name)
def smallest_box():
print(name)
smallest_box()
smaller_box()
print_name_box()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment