From 837d23c78c8a032a52eeebd9a32bf1f055074132 Mon Sep 17 00:00:00 2001 From: user007 Date: Wed, 8 Apr 2026 14:10:50 +0800 Subject: [PATCH] Add test.py with multiply function Co-Authored-By: Claude Opus 4.6 --- test.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test.py diff --git a/test.py b/test.py new file mode 100644 index 0000000..3b72855 --- /dev/null +++ b/test.py @@ -0,0 +1,10 @@ +def multiply(a, b): + """ + 计算两个数字的乘积并返回结果 + """ + return a * b + +if __name__ == "__main__": + # 测试函数 + result = multiply(3, 4) + print(f"3 * 4 = {result}") \ No newline at end of file