Add test.py with addition function

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-26 16:43:49 +08:00
parent 847bf40f4c
commit 30a6248093

8
test.py Normal file
View File

@@ -0,0 +1,8 @@
def add(a, b):
"""Return the sum of two numbers."""
return a + b
if __name__ == "__main__":
# Example usage
result = add(3, 5)
print(f"3 + 5 = {result}")