home *** CD-ROM | disk | FTP | other *** search
- Program back_ground_demo;
-
- uses crt,bgsound;
-
- begin
- writeln('Building music');
- PlayMusic('T80 O4 L8 GFE-FGGG P8 FFF4 GB-B-4 GFE-FGGG GFFGFE-');
- writeln('Music is playing');
- while BGSPlaying do begin { wait for music to end }
- if WhereY = 25 then ClrScr;
- writeln('The program can continue processing while the music is playing')
- end;
- writeln('Music is done')
- end.
-