Skip to content

Instantly share code, notes, and snippets.

@MarioAriasC
Created January 3, 2023 06:02
Embed
What would you like to do?
export class Program {
statements;
constructor(statements) {
this.statements = statements;
}
toString() {
return this.statements.join('');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment