TwoFigureMinuetThing.java
package mmw;

import note.SNote;

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

    }
}