Dorothy.java
1    
2    
3    /* 
4     * Name that tune! 
5     */
6    
7    package mmw;
8    
9    import note.SNote;
10   
11   public class Dorothy {
12   
13       public static void main(String[] args) {
14           SNote note = new SNote();
15           note.text();
16           note.x2(); note.play();
17           note.rp(7); note.play();
18           note.s2(); note.lp(); note.play();
19           note.lp(2); note.s2(); note.play();
20           note.rp(); note.play();
21           note.x2(); note.rp(); note.play();
22           note.rp(); note.play();
23           System.out.println();
24       }
25   
26   }