From 3faa561f1c2212373196a66bb3429997362f70b6 Mon Sep 17 00:00:00 2001 From: Luke Date: Wed, 25 Jun 2025 13:49:07 +0800 Subject: [PATCH] =?UTF-8?q?test=EF=BC=9A=E5=A2=9E=E5=8A=A0=20Demo10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- playground/Demo10/Main.snow | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 playground/Demo10/Main.snow diff --git a/playground/Demo10/Main.snow b/playground/Demo10/Main.snow new file mode 100644 index 0000000..ac302d8 --- /dev/null +++ b/playground/Demo10/Main.snow @@ -0,0 +1,13 @@ +function: main + return_type: int + body: + declare res: boolean = 8.1 == 7.1 + if res then + return 131 + else + return 666 + end if + + return 65537 + end body +end function \ No newline at end of file