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