252627282930313233
public ChatBot(String name, OutputStream outputStream) { this.name = name; this.out = new PrintWriter(outputStream, true); this.memory = new Memory(); this.temper = new Temper(); start(); System.out.println(name + " has started"); }