agentjudge-anon's picture
add assets (precondition files)
432c212 verified
Raw
History Blame Contribute Delete
143 Bytes
"""测试用 Python 文件"""
def greet(name: str) -> str:
return f"Hello, {name}!"
if __name__ == "__main__":
print(greet("World"))