/**
 * Gives Boys unique output.
 *
 * @author TK Rogers
 * @version 7-28-11
 */
 
public class Boys {
    // speaker is an object or instance,
    // in this case an object of the Boys class.   
    public static Boys speaker = new Boys ( ) ;
   
    // The segment of code below is called a method,
    // in this case the talk method.
    public void talk ( ) {
        System.out.println ( "Hello from the Boys class." ) ;
    }
}