
public class Dog implements Speaker {
	
	public void speak() {
		
		System.out.println("Bark!");
		
	} //end speak

} //end Dog