7 lines
166 B
Python
7 lines
166 B
Python
"""Utility functions for the demo package."""
|
|
|
|
|
|
def greet(name: str) -> str:
|
|
"""Return a friendly greeting for the provided name."""
|
|
return f"Hello, {name}!"
|