1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
BOX designB
sample
B from config file A
ends
# The next line is syntactically fine, but it is NOT a parent reference.
parent "131_data/C.cfg"
shapes {
w ("BBB", "BBB", "BBB")
}
elastic (
w
)
END designB
# -------------------------------------------------------
BOX designB2
sample
B2 from config file A
ends
# The next line is a syntax error, because of missing quotes. Also, this is NOT a parent reference.
parent 131_data/C.cfg
shapes {
w ("BB2", "BB2", "BB2")
}
elastic (
w
)
END designB2
|