9 lines
166 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// polymorphism/music/Instrument.java
2015-06-15 17:47:35 -07:00
package polymorphism.music;
class Instrument {
public void play(Note n) {
2015-11-03 12:00:44 -08:00
System.out.println("Instrument.play()");
2015-06-15 17:47:35 -07:00
}
2015-09-07 11:44:36 -06:00
}