home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Select: Games 4
/
SPCD4.bin
/
games
/
warrisk
/
beep.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2004-10-18
|
174 b
|
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;