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