ThreeFigureMinuetThing.java
1    package mmw;
2    
3    import note.SNote;
4    
5    public class ThreeFigureMinuetThing {
6        public static void main(String[] args) {
7         SNote note = new SNote();
8         note.text();
9         note.play();
10        note.lp();
11        note.play();
12        note.lp();
13        note.play();
14        note.rp(2);
15        note.s2();
16        note.play();
17        note.lp();
18        note.play();
19        note.lp();
20        note.play();
21        note.rp();
22        note.play();
23        note.rp();
24        note.x2();
25        note.play();
26        note.x3();
27        note.play();
28   
29   
30       }
31   }
32   
33   
34