boxes/test/131_data/A.cfg
2021-03-22 21:31:34 +01:00

40 lines
524 B
INI

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