Skip to content

Instantly share code, notes, and snippets.

@LiamJolly
Created May 22, 2017 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LiamJolly/3d70cc8eb4250f3621548187d30320ab to your computer and use it in GitHub Desktop.
Save LiamJolly/3d70cc8eb4250f3621548187d30320ab to your computer and use it in GitHub Desktop.
def function_one():
print "One"
def function_two():
print "Two"
def function_three():
print "Three"
def multiple_calls():
function_one()
function_two()
function_three()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment