From f083f6c89fea28e1f47ad43bf868711be2dbb36d Mon Sep 17 00:00:00 2001 From: lijunyang <2697085276@qq.com> Date: Thu, 26 Feb 2026 16:40:18 +0800 Subject: [PATCH] Add test.py with add function Co-Authored-By: Claude Opus 4.6 --- test.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test.py diff --git a/test.py b/test.py new file mode 100644 index 0000000..8b50490 --- /dev/null +++ b/test.py @@ -0,0 +1,3 @@ +def add(a, b): + """Return the sum of a and b.""" + return a + b \ No newline at end of file