execute the code in the python REPL ``` import time for i in range(100): print(i) time.sleep(1) ``` I should be able to stop this code from completing with an interrupt button.