Skip to content

Instantly share code, notes, and snippets.

@kellegous
Created February 13, 2016 01:49
Show Gist options
  • Select an option

  • Save kellegous/1aaa57ef1900c35ec20a to your computer and use it in GitHub Desktop.

Select an option

Save kellegous/1aaa57ef1900c35ec20a to your computer and use it in GitHub Desktop.
x = True
while x:
print('forever')
while x == True:
print('forever')
y = 2
while y == 2:
print('forever')
while True:
print('forever')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment