Files
zzs_test5/test.py
guanwei 84dc0fc62a Add test.py with addition function
Add a simple Python function that adds two numbers.
Includes example usage when run as main.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 16:38:36 +08:00

9 lines
191 B
Python

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