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();
10           note.play();
11           note.lp(); note.play(); note.rp();
12           note.lp(2); note.play(); note.rp(2);
13           note.s2(); note.play(); note.x2();
14           note.lp(); note.s2(); note.play(); note.x2(); note.rp();
15           note.lp(2); note.s2(); note.play(); note.x2(); note.rp(2);
16           note.lp(); note.s2(); note.play(); note.x2(); note.rp();
17           note.play();
18           note.x3(); note.play(); note.s3();
19           note.untext();
20       }
21   }
22