7 lines
157 B
Python
7 lines
157 B
Python
from typing import Annotated
|
|
|
|
|
|
def say_hello(name: Annotated[str, "this is just metadata"]) -> str:
|
|
return f"Hello {name}"
|
|
|
|
print(say_hello('Annotated')) |