Files
harbour-core/harbour/tests/sound.prg
1999-10-04 18:46:41 +00:00

15 lines
280 B
Plaintext

/*
* $Id$
*/
function main()
local start := seconds(), stop
qout( "start ", start )
tone( 440, 9.1 )
tone( 880, 9.1 )
tone( 440, 9.1 )
stop := seconds()
qout( "stop ", stop )
qout( "duration", ( stop - start ), "(should be close to 1.5)" )
return nil