THE DEV BENCH
📑 TOMLmedium

7. Inline tables

Write a key `owner` set to an INLINE table on one line, holding: • name — the string "Ada" • org — the string "Acme"

How to approach this

An inline table packs a whole table onto one line with braces: `owner = { name = "Ada", org = "Acme" }`. Entries are comma-separated, each still `key = value`. It's the same data as a `[owner]` section, just compact — handy for small groups.

config.toml