/*

The Caboose class.  A Caboose object is a Car that can follow the rest
of the train.  It is red.

*/

import java.awt.*;

class Caboose extends Car {
    
    public Caboose() {
        color = Color.red;
    }
    
    public String toString() { return "Caboose"; };
}

