THE DEV BENCH
📄 YAMLeasy

1. Your first YAML

Write YAML with three keys: • name: the string web • port: the number 8080 • enabled: the boolean true (No braces or quotes needed — YAML infers the types.)

How to approach this

YAML uses `key: value` with a SPACE after the colon. Strings usually don't need quotes; bare 8080 is parsed as a number and bare true as a boolean. Indentation (spaces, never tabs) defines structure. It's the same data as JSON, easier on the eyes.

config.yaml