ThreeFigureMinuetThing.java
/* 
* A program to play notes without the use of SComposers 
 */

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.playShort();
    note.rp(2); note.playShort();
    note.lp(); note.playShort();
    note.lp(); note.playShort();
    note.rp(); note.play();
    note.rp(); note.play();
    note.play();
    note.untext();
    }
}