ThreeFigureMinuetThing.java
1    /* 
2        * Build program to play (C,1) \ (B,1) \ (A,1) / (C,1/2) \ (B,1/2) \ (A,1/2) / (B,1/2) / (C,1) (C,3) 
3        * with using notes only. 
4     */
5    
6                package mmw;
7    
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(); note.lp(); note.play(); note.lp(); note.play();
15          note.rp(2); note.s2(); note.play(); note.lp(); note.play();
16          note.lp(); note.play(); note.rp(); note.play();
17          note.x2(); note.rp(); note.play(); note.x3(); note.play();
18          note.untext();
19      }
20   }