2015-09-07 11:44:36 -06:00

11 lines
238 B
Java

// 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()");
}
}