Skip to content

Instantly share code, notes, and snippets.

@alexbw
Created July 17, 2018 16:36
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 alexbw/c6087d70bc2c23e9b0ecb31e17c81ee5 to your computer and use it in GitHub Desktop.
Save alexbw/c6087d70bc2c23e9b0ecb31e17c81ee5 to your computer and use it in GitHub Desktop.
Nested control flow in AutoGraph
def f(n):
if n >= 0:
while n < 5:
n += 1
print(n)
return n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment