Created
August 2, 2019 08:25
-
-
Save sam-goodwin/64cb3d661354a23606f2c0ba508092ec to your computer and use it in GitHub Desktop.
Constructs are syntax trees?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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