# Author: Scott Wehrwein
# Date: 04/13/2021
# Demonstrates what happens if a while loop's condition is never true or
# never false.

i = 1

# never true - loop body is skipped
while i < 0:
    print(i)
    i -= 1

# always true - loop body is executed forever!
# use the friendly red "STOP" button to escape the infinite loop
while i <= 10:
    print(i)
    i = i + 1
    
print("done!")