-
-
Save markpasc/765685 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/usr/bin/env python | |
from subprocess import call | |
import time | |
ho = 'h' | |
def ooer(): | |
while True: | |
for i in range(6): | |
yield 'o' | |
yield '-o' | |
oo = ooer() | |
while True: | |
ho += oo.next() | |
print ho | |
call(['say', ho]) | |
time.sleep(1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment