ThreeFigureMinuetThing.java
/* 
 * Nine note line created by joining three JSB minuet figures. 
 */
package mmw;
import composer.SComposer;
import note.SNote;
public class ThreeFigureMinuetThing {
    public static void main(String[] args) {
        // c1 b1 a1 c1/2 b1/2 a1/2 b1/2 c1 c3
        SNote note = new SNote();
        note.text();note.play();
        note.lp();note.play();
        note.lp();note.play();
        note.rp(2);note.s2();note.play();
        note.lp();note.play();
        note.lp();note.play();
        note.rp();note.play();
        note.x2();note.rp();note.play();
        note.x3();note.play();

    }
}