home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Select: Games 4
/
CD_1.iso
/
games
/
warrisk
/
beep.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2004-10-18
|
174b
|
13 lines
PROCEDURE beep(n:integer);
{ emits n beep sounds }
var i : integer;
BEGIN
for i := 1 to n do
begin
sound(440);
delay(250);
nosound;
end;
END;