Table of Contents

CodeBricklayer

Blueprint

Blueprint pattern of CodeBricklayer.

How to describe a blueprint

Example A

Blueprint

...
${a} == ${b}
...
---
,
a,b
1,2
3,4
---

Generated content

1 == 2
3 == 4

Example B

Blueprint

...
${a} $<== ${b}>
...
---
,
a,b
1,2
3
---

Generated content

1 == 2
3