blob: 363528185d61a0bea1b4462574fff2e6de78094a [file] [log] [blame]
Guido van Rossum2512d6d2000-04-24 14:01:51 +00001# Ridiculously simple test of the winsound module for Windows.
Guido van Rossumcdd092f2000-04-21 21:28:47 +00002
3import winsound
4for i in range(100, 2000, 100):
5 winsound.Beep(i, 75)
6print "Hopefully you heard some sounds increasing in frequency!"