Skip to content

Instantly share code, notes, and snippets.

@sekimura
Created January 4, 2011 22:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sekimura/765587 to your computer and use it in GitHub Desktop.
Save sekimura/765587 to your computer and use it in GitHub Desktop.
say_hoo.py
#!/usr/bin/env python
from subprocess import call
import time
ho = 'h'
while 1:
ho += 'o'
print ho
call(['say', ho])
time.sleep(1)
@sekimura
Copy link
Author

sekimura commented Jan 4, 2011

I loved "say hooooo" one :)

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