Add test.py with add_numbers function

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-26 16:41:46 +08:00
parent d28a0b08c8
commit 3d61cf12a5

3
test.py Normal file
View File

@@ -0,0 +1,3 @@
def add_numbers(a, b):
"""返回两个数字的和"""
return a + b