13 lines
163 B
Plaintext
13 lines
163 B
Plaintext
|
// comment
|
||
|
Tree("Root") {
|
||
|
// comment
|
||
|
Decorator (Repeat) {
|
||
|
RunTree("Recursion")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Tree("Recursion") {
|
||
|
Composite (Sequence) {
|
||
|
RunTree("Recursion")
|
||
|
}
|
||
|
}
|