From e0ad9452023218ccadabf6fcc13c5dcc657d2d49 Mon Sep 17 00:00:00 2001 From: Luke Date: Mon, 28 Jul 2025 13:43:27 +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 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/playground/Demo/Demo15/Main.snow b/playground/Demo/Demo15/Main.snow index 7ef2b05..269100f 100644 --- a/playground/Demo/Demo15/Main.snow +++ b/playground/Demo/Demo15/Main.snow @@ -1,9 +1,13 @@ module: Main import: os + globals: + declare num1:int=10 function: main + return_type: void body: - print(222) + declare num1:int=11 + print(num1) end body end function end module \ No newline at end of file