//: polymorphism/music/Instrument.java // ©2015 MindView LLC: see Copyright.txt package polymorphism.music; import static com.mindviewinc.util.Print.*; class Instrument { public void play(Note n) { print("Instrument.play()"); } } ///:~