ThreeFigureMinuetThing.java
package mmw;

import note.SNote;

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

    }

}