Add hello-world

This commit is contained in:
Andras Schmelczer 2022-06-26 13:13:08 +02:00
parent da279152ba
commit 4ed5d70830
4 changed files with 37 additions and 4 deletions

6
docs/hello_world.py Normal file
View file

@ -0,0 +1,6 @@
from great_ai import GreatAI
@GreatAI.create
def hello_world(name: str) -> str:
return f"Hello {name}!"