ThreeFigureMinuetThing.java
1    package mmw;
2    import composer.SComposer;
3    import note.SNote;
4    
5    
6    public class ThreeFigureMinuetThing {
7        public static void main(String[]args){
8            SNote note = new SNote();
9            note.text();note.play();
10           note.lp();note.play();
11           note.lp();note.play();
12           note.rp(2);note.s2();note.play();
13           note.lp();note.play();
14           note.lp();note.play();
15           note.rp();note.play();
16           note.rp();note.x2();note.play();
17           note.x3();note.play();
18           System.out.println();
19   
20   
21       }
22   }
23