1 /* 2 *Program to figure out what the Mystery Song is in Modular Melody World (mmw) 3 */ 4 5 package mmw; 6 import note.SNote; 7 8 public class MysterySong { 9 public static void main(String[] args){ 10 SNote note= new SNote(); 11 note.text(); 12 note.play(); 13 note.rp();note.play(); 14 note.rp();note.play(); 15 note.lp(2);note.play(2); 16 note.rp();note.play(); 17 note.rp();note.play(); 18 note.lp(2);note.play(); 19 note.rp(2);note.play(); 20 note.rp();note.play(); 21 note.rp(); note.x2();note.play();note.s2(); 22 note.lp(2);note.play(); 23 note.rp();note.play(); 24 note.rp(); note.x2();note.play();note.s2(); 25 System.out.println(); 26 } 27 } 28