blob: 901b7019ccc5601275b0fa242f2145ec3ac2acfc [file] [log] [blame]
Guido van Rossumcdd092f2000-04-21 21:28:47 +00001# Rediculously simple test of the winsound module for Windows.
2
3import winsound
4for i in range(100, 2000, 100):
5 winsound.Beep(i, 75)
6print "Hopefully you heard some sounds increasing in frequency!"
7