Skip to content

Instantly share code, notes, and snippets.

@sam-goodwin
Created August 2, 2019 08:25
Show Gist options
  • Save sam-goodwin/64cb3d661354a23606f2c0ba508092ec to your computer and use it in GitHub Desktop.
Save sam-goodwin/64cb3d661354a23606f2c0ba508092ec to your computer and use it in GitHub Desktop.
Constructs are syntax trees?
new Construct(scope, 'myConstruct');
// is a lot like:
function scope() {
const myConstruct = new Construct();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment