NAME
-
beep - sound the speaker
SYNOPSIS
-
beep
DESCRIPTION
-
Beep
causes terminals which are capable of making a sound to do so.
Beep
has the same effect as
print
chr$(7);.
EXAMPLE
-
The program
defint n
for n = 1 to 20000
if n mod 100 = 0 then beep
next n
produces a beep for each multiple of 100 between 1 and 20000.
SEE ALSO
-
chr$
USAGE NOTES
-
The frequency and duration of the sound produced depend on the
user’s terminal.
from
The Basmark QuickBASIC Programmer’s Manual
by
Lawrence Leinweber