Dolly.java
package mmw;

import note.SNote;

public class Dolly {

    public static void main(String[] args) {
        SNote notebook = new SNote();
        notebook.text();
        notebook.x2();
        notebook.play();
        notebook.rp(7);
        notebook.play();
        notebook.s2();
        notebook.lp();
        notebook.play();
        notebook.lp(2);
        notebook.s2();
        notebook.play();
        notebook.rp();
        notebook.play();
        notebook.x2();
        notebook.rp();
        notebook.play();
        notebook.rp();
        notebook.play();
        System.out.println();
/*playing around #1*/
        SNote note = new SNote();
        note.text();
        note.x2();
        note.play();
        note.rp(7);
        note.play();
        note.s2();
        note.lp();
        note.play();
        note.lp(2);
        note.s2();
        note.play();
        note.rp();
        note.play();
        note.x2();
        note.rp();
        note.play();
        note.rp();
        note.play();
        System.out.println();
    }

}