home *** CD-ROM | disk | FTP | other *** search
- program Cello;
-
- (*
- A demonstration for the WinPlay unit by Don Phillip Gibson
- *)
-
-
- Uses WinCrt, WinPlay, WinProcs, WinTypes, Strings;
-
- begin
- StrCopy(WindowTitle,'Bach: Cello Suite in G Major, Menuetto');
- InitWinCrt;
-
- repeat
- Play ('t104 o2 l8 ml');
-
- Play ('g>db4ab16>c16 <bagf#gd');
- Play ('eg>c<af#>d <b2a.p16');
- Play ('<a>f#>c4<b>c16d16 c<bagf#e');
- Play ('f#g16a16gf#ef# d4<a4d.p16');
-
- Play ('g>db4ab16>c16 <bagf#gd');
- Play ('eg>c<af#>d <b2a.p16');
- Play ('<a>f#>c4<b>c16d16 c<bagf#e');
- Play ('f#g16a16gf#ef# d4<a4d.p16');
-
- Play ('>df#a4ga16b16 agf#edf#');
- Play ('<b>dg#ab>d <<a>>dc<b>c.p16');
- Play ('<d#f#a>c<ba be<g>a>c<b');
- Play ('agf#e<b>d# <e4p>edc');
-
- Play ('<b>dg4de16f32p32 fdec<cb');
- Play ('>c#ea4ef#16g32p32 gef#d<da');
- Play ('>df#a>c<b>d <egb>dce');
- Play ('d<f# t94 g<b t84 d>f# g2.');
-
- until MessageBox(0,'Play it again?','Cello Suite',
- mb_YesNo or mb_IconQuestion) = id_No;
- DoneWinCrt;
- end.
-