11 lines
245 B
Java
11 lines
245 B
Java
|
//: polymorphism/music/Instrument.java
|
|||
|
// <20>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()");
|
|||
|
}
|
|||
|
} ///:~
|