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