]> andersk Git - libyaml.git/blob - examples/anchors.yaml
Skip 5 tests in libyaml-emitter.list
[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.034592 seconds and 5 git commands to generate.