AfterJSB.java
1    ///40 notes of exactly 5 different JSB modular melodic sequences
2    ///With the final note to be a long C note
3    
4    package MMW;
5    import composer.SComposer;
6    public class AfterJSB {
7        public static void main(String[] args) {
8            SComposer c = new SComposer();
9            c.text();
10   
11           c.mms_33_JSB_M2();
12           c.mms_33_JSB_M2();
13           c.mms_35_JSB_M12();
14           c.mms_35_JSB_M13();
15           c.mms_33_JSB_M2();
16           c.mms_34_JSB_M7();
17           c.mms_35_JSB_M9();
18           c.mms_33_JSB_M2();
19           c.mms_33_JSB_M2();
20           c.mms_35_JSB_M13();
21   
22   
23           c.note();
24           c.x3();
25           c.play();
26   
27   
28       }
29   }
30