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