AfterJSB.java
/* 
 *This program plays a sequence of 40 notes ending with along C note 
 */

package mmw;

import note.SNote;
import composer.SComposer;

public class AfterJSB {
    public static void main(String[] args) {
        SComposer melody = new SComposer();
        melody.text();
        melody.mms_31_JSB_M1();
        melody.mms_33_JSB_M2();
        melody.mms_33_JSB_M3();
        melody.mms_33_JSB_M4();
        melody.mms_33_JSB_M5();
        melody.mms_31_JSB_M1();
        melody.mms_33_JSB_M2();
        melody.mms_33_JSB_M3();
        melody.mms_33_JSB_M4();
        melody.mms_33_JSB_M5();
        melody.mms_31_JSB_M1();
        melody.mms_33_JSB_M2();
        melody.mms_33_JSB_M3();
        melody.mms_33_JSB_M4();
        melody.mms_33_JSB_M5();
        melody.mms_31_JSB_M1();
    }
}