// Hunter Schafer, CSE 122 // Simple class to show off JFugue player import org.jfugue.pattern.Pattern; import org.jfugue.player.Player; public class MusicPlayerSimple { public static void main(String[] args) { Player player = new Player(); Pattern pattern = new Pattern("C D E F G A B C6").setInstrument("clarinet"); player.play(pattern); } }