2015-05-29 14:18:51 -07:00

12 lines
243 B
Java

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