From 852c6c0924238152dfb8e5ce6f3edc3ffb3dcb27 Mon Sep 17 00:00:00 2001 From: Luke Date: Thu, 12 Jun 2025 16:37:52 +0800 Subject: [PATCH] =?UTF-8?q?test:=20=E5=A2=9E=E5=8A=A0Demo7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- playground/Demo7/Main.snow | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 playground/Demo7/Main.snow diff --git a/playground/Demo7/Main.snow b/playground/Demo7/Main.snow new file mode 100644 index 0000000..ef4ebf0 --- /dev/null +++ b/playground/Demo7/Main.snow @@ -0,0 +1,12 @@ +module: Main + function: main + parameter: + return_type: boolean + body: + declare b1 :boolean = true + declare b2 :boolean = !b1 + + return b2 + end body + end function +end module \ No newline at end of file