from __future__ import annotations def format_greeting(name: str) -> str: """Return a greeting message.""" return f"Hello, {name}!"