AfterJSB.java
/* 
 * A program that using only the sequences from the JSB Bach, create a melody that compose of 40 notes, 5 different sequences, and end with a C Note. 
 */

package mmw;
import composer.SComposer;

public class AfterJSB {

    public static void main(String[] args){
        SComposer Kevin = new SComposer();
        Kevin.text();

        // 5 Notes
        Kevin.mms_35_JSB_M13();

        // 10 Notes
        Kevin.mms_36_JSB_M15();
        Kevin.mms_34_JSB_M6();

        // 10 Notes
        Kevin.mms_36_JSB_M14();
        Kevin.mms_34_JSB_M7();

        // 10 Notes
        Kevin.mms_36_JSB_M15();
        Kevin.mms_34_JSB_M6();

        // 5 Notes and ends with a C note
        Kevin.mms_35_JSB_M13();
    }
}