Skip to content

Instantly share code, notes, and snippets.

@animatedlew
Last active December 27, 2015 16:39
Show Gist options
  • Save animatedlew/7356907 to your computer and use it in GitHub Desktop.
Save animatedlew/7356907 to your computer and use it in GitHub Desktop.
def loop(num):
print("num: ", num)
if (num > 0):
loop(num - 1)
loop (10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment