Re: bell
- Posted by irvm at ellijay.com Jul 24, 2001
- 374 views
On Tuesday 24 July 2001 12:17, gwalters at sc.rr.com wrote: > Should this not work? I get no sound from my computer..thanks for your help > > global procedure bell() > sound(600) > sleep(.5) > sound(0) > end procedure It shouldn't even 'compile' - sleep takes an integer. If you change that to sleep(1), it will run on DOS, but not on Windows or Linux. Regards, Irv