ThreeFigureMinuetThing.java
1    /* 
2     * Nine note line created by joining three JSB minuet figures. 
3     */
4    package mmw;
5    
6    import note.SNote;
7    
8    public class ThreeFigureMinuetThing {
9        public static void main(String[] args) {
10   
11           SNote note = new SNote();
12           note.text();
13   
14           System.out.println("M10");
15           {
16               note.play();
17               note.lp();
18               note.play();
19               note.lp();
20               note.play();
21               note.rp(2);
22               note.s2();
23               note.play();
24               note.lp();
25               note.play();
26               note.lp();
27               note.play();
28               note.rp();
29               note.play();
30               note.rp();
31               note.x2();
32               note.play();
33               note.x3();
34               note.play();
35           }
36       }
37   }
38   
39   
40