/home/ssingh6/NetBeansProjects/CS1/src/mmw/Melody.java
 1 /*
 2  * To change this license header, choose License Headers in Project Properties.
 3  * To change this template file, choose Tools | Templates
 4  * and open the template in the editor.
 5  */
 6 package mmw;
 7 import composer.SComposer;
 8 /**
 9  *
10  * @author ssingh6
11  */
12 public class Melody {
13 
14     /**
15      * @param args the command line arguments
16      */
17     public static void main(String[] args) {
18        SComposer c = new SComposer();
19        c.text();
20        c.mms5();
21        c.rp(); c.mms5(); c.lp();
22        c.lp(); c.mms5(); c.rp();
23        c.mms5();
24        c.mms7();
25        c.rp(); c.mms8(); c.lp();
26        c.lp(); c.mms7(); c.rp();
27        c.mms8();
28        c.untext();
29     }
30     
31 }
32