6 lines
110 B
Python
6 lines
110 B
Python
from great_ai import GreatAI
|
|
|
|
|
|
@GreatAI.create
|
|
def hello_world(name: str) -> str:
|
|
return f"Hello {name}!"
|