Skip to content

Instantly share code, notes, and snippets.

@mlafeldt
Created March 20, 2012 10:28
Show Gist options
  • Select an option

  • Save mlafeldt/2133960 to your computer and use it in GitHub Desktop.

Select an option

Save mlafeldt/2133960 to your computer and use it in GitHub Desktop.
[Python] goto
# From http://stackoverflow.com/questions/6959360/goto-in-python
@goto
def test1(n):
s = 0
label .myLoop
if n <= 0:
return s
s += n
n -= 1
goto .myLoop
# >>> test1(10)
# 55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment