From 82ad748a45d9d0755641a33c95b9d231e73f8d22 Mon Sep 17 00:00:00 2001 From: jing <3030349106@qq.com> Date: Mon, 29 Dec 2025 20:43:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=8A=A0=E6=B3=95=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E7=94=A8=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/test_case/simple_add.sy | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/test_case/simple_add.sy diff --git a/test/test_case/simple_add.sy b/test/test_case/simple_add.sy new file mode 100644 index 0000000..dd3b921 --- /dev/null +++ b/test/test_case/simple_add.sy @@ -0,0 +1,5 @@ +int main() { + int a = 1; + int b = 2; + return a + b; +}