For this exercise you will create a new class to contain information about trucks. Your class will be very simple containing only the make and color of the truck. This class will have a default color red, so you can initialize the truck with just the make or with make and color. You should be able to change the default color. Finally, you should be able to print the truck in a window. Store each of the variables as a string.
Use the notes on how to create the temperature class to assist you in creating the Truck class.