export class Output { constructor() { this.buffer = ""; } log(...s) { this.buffer += s.join("") + "\n"; } }