Dorothy.java
1    /* 
2    * name that tune! 
3     */
4    package mmw;
5    
6    import note.SNote;
7    
8    public class Dorothy {
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