public class Talking {

    public static void main( String[] args ) {

	Speaker current;

	current = new Dog();
	current.speak();

	current = new Philosopher( "I think, therefore I am." );
	current.speak();

	((Philosopher)current).pontificate();

    } // end of main()

} // end of Talking class

