📑 TOMLeasy
3. Types: quoted vs bare
Write three top-level keys with the RIGHT types: • region — the string "us-east" • retries — the number 3 • enabled — the boolean true
How to approach this
The whole game in TOML config: strings are quoted, numbers (`3`, `1.5`) and booleans (`true`/`false`) are bare. Quoting a number (`retries = "3"`) silently makes it a string, which the app then can't do math on — a classic real-world bug.
config.toml