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