Skip to content

Instantly share code, notes, and snippets.

@Breefield
Created November 15, 2020 21:54
Show Gist options
  • Save Breefield/e840d065524a3266967d3d58136fde9e to your computer and use it in GitHub Desktop.
Save Breefield/e840d065524a3266967d3d58136fde9e to your computer and use it in GitHub Desktop.
import time
i = 0
while True:
i += 1
print("ping" if i % 2 else "pong")
time.sleep(0.5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment