12 lines
243 B
Java
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()");
|
|
}
|
|
}
|
|
///:~
|