hocon-parser 1.6.1

Full Lightbend HOCON specification-compliant parser for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
## This file tests ConfigDelayedMerge and ConfigDelayedMergeObject

a=1
b=2
c=3
d={ "foo" : "bar" }

# merge some x's
x=${a}
x=${b}

# merge some y's where we know one is an object
y=${d}
y={ "hello" : "world", "foo" : 10 }