1 /* 2 * Program to checkout (view and possibly listen to) Bach's Minuets 3 * in the Modular Melody World 4 */ 5 6 package mmw; 7 8 import composer.SComposer; 9 10 public class AfterJSB { 11 12 public static void main(String[] args) { 13 SComposer Bach = new SComposer(); 14 15 Bach.text(); 16 17 //Line 1 18 Bach.mms_33_JSB_M2(); Bach.mms_35_JSB_M13(); 19 //Line 2 20 Bach.rp(2); 21 Bach.mms_33_JSB_M2(); Bach.mms_35_JSB_M13(); 22 Bach.lp(2); 23 //line 3 24 Bach.mms_33_JSB_M3(); 25 Bach.mms_33_JSB_M5(); 26 //Line 4 27 Bach.rp(9); Bach.mms_33_JSB_M2(); 28 Bach.lp(); Bach.mms_33_JSB_M2(); 29 Bach.lp(); Bach.mms_33_JSB_M2(); 30 Bach.lp(7); 31 //Line 5 32 Bach.mms_33_JSB_M2(); Bach.mms_35_JSB_M13(); 33 Bach.lp(7); Bach.x3(); Bach.mms_31_JSB_M1(); 34 Bach.rp(7); 35 36 Bach.untext(); 37 } 38 39 private static void space(SComposer c) { 40 c.untext(); c.rest(2); c.text(); 41 } 42 } 43