ThreeFigureMinuetThing.java
/* 
 * changing composer to notes 
 */
package mmw;
import note.SNote;

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