THE DEV BENCH
📑 TOMLeasy

1. Keys and values

Write two top-level key/value pairs: • title — the string "My Service" • port — the number 8080

How to approach this

TOML is `key = value`, one per line. It looks like INI but with real types: strings are QUOTED, while numbers and booleans are bare. Getting `port = 8080` (a number) vs `port = "8080"` (a string) right is the core TOML skill.

config.toml