Code
yaml
# Flow style (inline)
fruits: [apple, banana, cherry]
person: {name: Alice, age: 30}
nested: {a: [1, 2], b: {c: 3}}
# Mixed flow and block
config:
server: {host: localhost, port: 8080}
features: [auth, logging, cache]Inline JSON-like sequences and mappings.
# Flow style (inline)
fruits: [apple, banana, cherry]
person: {name: Alice, age: 30}
nested: {a: [1, 2], b: {c: 3}}
# Mixed flow and block
config:
server: {host: localhost, port: 8080}
features: [auth, logging, cache]