(title: string)
| 253 | |
| 254 | /** Render a section header. Output-only — no I/O wait. */ |
| 255 | export function section(title: string): void { |
| 256 | console.log(''); |
| 257 | console.log(divider()); |
| 258 | console.log(` ${title}`); |
| 259 | console.log(divider()); |
| 260 | } |
| 261 | |
| 262 | /** Render a paragraph of explanatory text indented under a section. */ |
| 263 | export function paragraph(text: string): void { |