Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
pascal/TRIPLSND.PAS
2001-11-30 12:14:44 +01:00

16 lines
190 B
Plaintext

uses Crt;
var i: integer;
begin
for i:=1 to 50 do begin
Sound(800);
Delay(1);
Sound(1000);
Delay(1);
Sound(1200);
Delay(1);
end;
NoSound;
end.