Pages

Saturday, October 1, 2016

Objects With Eyes (Java)

class ObjectWithEyes {
  String eyeColor;
  ObjectWithEyes(String EyeColor) {
    this.eyeColor = EyeColor;
  }
}