TwoFigureMinuetThing.java
1    package mmw;
2    
3    import note.SNote;
4    public class TwoFigureMinuetThing
5    {
6        public static void main(String[] args)
7        {
8            SNote note = new SNote();
9            note.text();
10           note.play();
11           note.rp();
12           note.rp();
13           note.rp();
14           note.s2();
15           note.play();
16           note.rp();
17           note.play();
18           note.rp();
19           note.play();
20           note.rp();
21           note.play();
22           note.rp();
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       }
34   }
35   
36   
37   
38