/* Solution to Chapter 1, Exercise 2 in Teach Yourself Java in 21 Days (Eighth Edition by Rogers Cadenhead. */ package com.java21days; class ChessPiece { String color; int startingPosition; }