freebsd-dev/contrib/libucl/tests/basic/18.in
2016-04-17 21:30:40 +00:00

32 lines
402 B
Plaintext

defaults {
key = "val"
foo = "bar"
many = "values here"
}
mything {
.inherit "defaults"
key = "newval"
key = "newval1"
}
mything {
.inherit "mything"
key = "newval"
}
.priority 3
defaults {
key = "val1"
foo = "bar1"
many = "values here"
}
mything1 {
key2 = "wtf??"
.priority 1
.inherit "defaults"
.inherit "mything"
.inherit "mything1"
key1 = "newval"
key2 = "OMG" # low priority
}