Skip to content

Instantly share code, notes, and snippets.

@MarioAriasC
Created January 3, 2023 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarioAriasC/a96dc0c279821ae1994368fa6d3fbd06 to your computer and use it in GitHub Desktop.
Save MarioAriasC/a96dc0c279821ae1994368fa6d3fbd06 to your computer and use it in GitHub Desktop.
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