10 lines
201 B
YAML
10 lines
201 B
YAML
---
|
|
here's a sequence:
|
|
- item 1
|
|
- item 2
|
|
now an inline sequence: [1, 2, 3]
|
|
and here's a map:
|
|
name: Jesse
|
|
age: 23
|
|
and here's an inline map: {state: Illinois, city: Urbana-Champaign}
|
|
... |