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