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