10 lines
207 B
Java
10 lines
207 B
Java
// polymorphism/music/Instrument.java
|
|
// ©2016 MindView LLC: see Copyright.txt
|
|
package polymorphism.music;
|
|
|
|
class Instrument {
|
|
public void play(Note n) {
|
|
System.out.println("Instrument.play()");
|
|
}
|
|
}
|