THE DEV BENCH
📑 TOMLhard

8. Array of tables [[…]]

Use `[[products]]` to define a LIST of two product tables: • first — name "Widget", sku 1 • second — name "Gadget", sku 2

How to approach this

Double brackets `[[products]]` declare an ARRAY of tables: each `[[products]]` header starts a NEW element in the `products` array. Repeat the header once per item. This is how TOML expresses a list of objects (e.g. an array of services or dependencies).

config.toml