Coverage for app\hello.py: 75%

4 statements  

« prev     ^ index     » next       coverage.py v7.10.3, created at 2025-09-10 15:53 +0900

1def hello() -> str: 

2 """Return a hello world string.""" 

3 return "hello world" 

4 

5 

6if __name__ == "__main__": 

7 print(hello())