HillyJourney.java
package mmw;

import composer.SComposer;
import note.SNote;


        // The melody will consist of between 40 and 45 notes
//The melody will make use of exactly 6 different modular melodic sequences,
// all related to either motion or landscapes.
//At least one sequence will be related to
// hills, and at least one will be from the sequences related to motion.
// final note is a long C
        public class HillyJourney {
            public static void main(String[] args) {
                SComposer c = new SComposer();
                SNote n = new SNote();
                c.text();
                c.mms_86_HillStones();
                c.mms_87_Hill();
                c.mms_33_JSB_M2();
                c.mms_87_Stagger();
                c.mms_87_Stroll();
                c.mms_87_ZigZag();
                n.lp(2); n.rp(2); n.play();

            }
        }