Skip to content

Instantly share code, notes, and snippets.

@jfktrey
Last active July 31, 2021 04:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jfktrey/9eb5e2170f0a4aae483d4d632b7da68d to your computer and use it in GitHub Desktop.
Save jfktrey/9eb5e2170f0a4aae483d4d632b7da68d to your computer and use it in GitHub Desktop.
Maze
import random
import sys
import time
while True:
sys.stdout.write(random.choice([u'╱',u'╲']))
sys.stdout.flush()
time.sleep(0.01)
@yhh2021
Copy link

yhh2021 commented Jul 31, 2021

absolutely genius!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment