From 52d811b6aa36650f21056e06328b101c2926fec8 Mon Sep 17 00:00:00 2001 From: Luke Date: Mon, 28 Jul 2025 15:25:09 +0800 Subject: [PATCH] =?UTF-8?q?test:=20=E6=9B=B4=E6=96=B0=20Demo15=20=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- playground/Demo/Demo15/Main.snow | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playground/Demo/Demo15/Main.snow b/playground/Demo/Demo15/Main.snow index 269100f..df8dc63 100644 --- a/playground/Demo/Demo15/Main.snow +++ b/playground/Demo/Demo15/Main.snow @@ -2,12 +2,12 @@ module: Main import: os globals: declare num1:int=10 + declare num2:int=10 function: main - return_type: void body: declare num1:int=11 - print(num1) + print(num1+num2) end body end function end module \ No newline at end of file