ThreeFigureMinuetThing.java
/* 
 * Play a sequence of nine notes using only the SNotes. 
 */

package mmw;
import note.SNote;

public class ThreeFigureMinuetThing {
    public static void main(String[] args) {
        SNote Feng = new SNote();

        Feng.text();
        Feng.play();
        Feng.lp(1); Feng.play();
        Feng.lp(1); Feng.play(); Feng.rp(2);
        System.out.println();

        Feng.s2(); Feng.play();
        Feng.lp(1); Feng.play();
        Feng.lp(1); Feng.play();
        Feng.rp(1); Feng.play();
        Feng.x2(); Feng.rp(1); Feng.play();
        System.out.println();

        Feng.x3(); Feng.play(); Feng.s3();
    }
}