Last active
July 31, 2021 04:43
-
-
Save jfktrey/9eb5e2170f0a4aae483d4d632b7da68d to your computer and use it in GitHub Desktop.
Maze
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import sys | |
import time | |
while True: | |
sys.stdout.write(random.choice([u'╱',u'╲'])) | |
sys.stdout.flush() | |
time.sleep(0.01) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
absolutely genius!