// represents a list of String class ConsLoBuddy implements ILoBuddy { Person first; ILoBuddy rest; ConsLoBuddy(Person first, ILoBuddy rest) { this.first = first; this.rest = rest; } }