ThreeFigureMinuetThing.java
/* 
 * Nine note line created by joining three JSB minuet figures. 
 */

package mmw;
import note.SNote;

public class ThreeFigureMinuetThing {
    public static void main(String[] args) {
        SNote sn = new SNote();
        sn.text();
        sn.play();
        sn.lp(); sn.play();
        sn.lp(); sn.play();
        sn.rp(); sn.s2(); sn.play();
        sn.lp(); sn.play();
        sn.rp(); sn.play();
        sn.rp(); sn.x2(); sn.play();
        sn.x3(); sn.play();
    }
}