ThreeFigureMinuetThing.java
1    package mmw;
2    import composer.SComposer;
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(); note.play(); note.rp();
11           note.lp(2); note.play(); note.rp(2);
12           note.s2(); note.play(); note.x2();
13           note.lp(); note.s2(); note.play(); note.rp(); note.x2();
14           note.lp(2); note.s2(); note.play(); note.rp(2); note.x2();
15           note.lp(); note.s2(); note.play(); note.rp(); note.x2();
16           note.play();
17           note.x3(); note.play(); note.s3();
18   
19   
20       }
21   }