ThreeFigureMinuetThing.java
/* 
 * This program is to duplicate notes from SComposer using only SNote. 
 */

        package mmw;

import note.SNote;

public class ThreeFigureMinuetThing {

    public static void main(String[] args){
        SNote c = new SNote();
        c.text();
        c.play();
        c.lp();c.play();
        c.lp();c.play();
        c.rp(2);c.s2();c.play();
        c.lp();c.play();
        c.lp();c.play();
        c.rp();c.play();
        c.rp();c.x2();c.play();
        c.x3();c.play();
        System.out.println();
    }
}