Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

11 lines
245 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()");
}
} ///:~