
// still lots of problems...
// 1. adding constants
// 2. removing constants
// 3. ensuring type-safety
// 4. debugging

class color4 {
  private color4() {}

  public static final color4 RED = new color4();
  public static final color4 GREEN = new color4();
  public static final color4 BLUE = new color4();
}

