ThreeFigureMinuetThing.java
1    package mmw;
2    
3    //(C,1) \ (B,1) \ (A,1)
4    /// (C,1/2) \ (B,1/2) \ (A,1/2) / (B,1/2) / (C,1)
5    //(C,3)
6    
7    import composer.SComposer;
8    import note.SNote;
9    
10   public class ThreeFigureMinuetThing {
11           public static void main(String[] args) {
12               SNote note = new SNote();
13               note.text();
14               note.play();
15               note.lp(); note.play();
16               note.lp(); note.play();
17               note.rp(2); note.s2(); note.play();
18               note.lp(); note.play();
19               note.lp(); note.play();
20               note.rp(); note.play();
21               note.rp(); note.x2(); note.play();
22               note.x3(); note.play();
23   
24           }
25       }
26   
27