From 419057c3c2d16f3d6241f5cf1e9933bc9c5a05e2 Mon Sep 17 00:00:00 2001 From: Luke Date: Sun, 31 Aug 2025 15:34:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=20getName=20=E6=96=B9?= =?UTF-8?q?=E6=B3=95=E8=B0=83=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- playground/Demo/Demo29/Main.snow | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playground/Demo/Demo29/Main.snow b/playground/Demo/Demo29/Main.snow index 8f5d92d..774980c 100644 --- a/playground/Demo/Demo29/Main.snow +++ b/playground/Demo/Demo29/Main.snow @@ -43,7 +43,7 @@ module: Main // 初始化 Person 和 Address 的实例 declare p: Person = new Person(123, new Address(1, 2)) - os.print(p.getName) // 打印 name + os.print(p.getName()) // 打印 name end body end function