export class PlaygroundConsole { constructor(elem) { this.elem = elem; } log(text) { this.elem.textContent += `\n${text}\n`; } }