ThreeFigureMinuetThing.java
/* 
 * Nine note line created by using nine notes. 
 */
package mmw;
import note.SNote;

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

    }
}