Dorothy.java
1    //Dorothy Program
2    /* 
3    *Name That Tune 
4    * // somewhere over the rainbow 
5    /simple thing to listen to some tunes 
6     */
7    package mmw;
8    import note.SNote;
9    
10   public class Dorothy {
11       public static void main (String[] args) {
12   
13           SNote note = new SNote();
14           note.text();
15           // note is a half beat?
16           note.x2(); note.play();
17           //rest i believe
18           note. rp(7); note.play();
19           note.s2(); note.lp(); note.play();
20           note.lp(2); note.s2(); note.play();
21           note.rp(); note.play();
22           // note.rp  repeat i believe
23           note.x2(); note.rp(); note.play();
24           note.rp(); note.play();
25           // system.out.println() this is what prints the notes on the bottom
26           System.out.println();
27   
28   
29       }
30   }