mirror of
https://gitee.com/openharmony/third_party_pyyaml
synced 2024-11-23 15:30:46 +00:00
2c225b29fc
Could, as well as should, shall, must, may, can, might, etc. are auxiliary words. After an auxiliary word should come an infinitive verb.
19 lines
218 B
Plaintext
19 lines
218 B
Plaintext
%YAML 1.1
|
|
---
|
|
!!seq [
|
|
!!map {
|
|
? !!str "sun"
|
|
: !!str "yellow"
|
|
},
|
|
!!map {
|
|
? !!map {
|
|
? !!str "earth"
|
|
: !!str "blue"
|
|
}
|
|
: !!map {
|
|
? !!str "moon"
|
|
: !!str "white"
|
|
}
|
|
}
|
|
]
|