mirror of https://github.com/databricks/cli.git
11 lines
110 B
YAML
11 lines
110 B
YAML
|
# 7. Number Anchors
|
||
|
defaultAge: &age 25
|
||
|
|
||
|
person1:
|
||
|
name: Alice
|
||
|
age: *age
|
||
|
|
||
|
person2:
|
||
|
name: Bob
|
||
|
age: *age
|