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