Source code for buffalo_example.internal.say_hello

"""Say hello implementation."""


[docs] def say_hello(name: str) -> str: """Says hello to the name provided. Parameters ---------- name : str Name to address hello Returns ------- str Resulting greeting """ return f"Hello {name}!"