2015-11-14 16:18:05 -08:00

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()");
}
}