]> andersk Git - libyaml.git/blob - examples/anchors.yaml
added an examples directory with a few yaml examples
[libyaml.git] / examples / anchors.yaml
1 base: &base
2     name: Everyone has same name
3
4 foo: &foo
5     <<: *base
6     age: 10
7
8 bar: &bar
9     <<: *base
10     age: 20
This page took 0.698363 seconds and 5 git commands to generate.