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