Add project structure and hello_world function

This commit is contained in:
nkozobrod
2026-06-07 12:15:22 +00:00
parent f7681c2f0f
commit dd2dfa7980
4 changed files with 7 additions and 0 deletions
View File
+2
View File
@@ -0,0 +1,2 @@
def hello_world() -> str:
return "Hello, World!"
View File
+5
View File
@@ -0,0 +1,5 @@
from src.main import hello_world
def test_hello_world():
assert hello_world() == "Hello, World!"