From cdc858336ee809bf06b05fe13df6acbf49e74db8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yv=EF=BD=9E=E4=B8=AD=E5=9B=BD=E9=B1=BC=EF=BD=9E?= =?UTF-8?q?=F0=9F=87=A8=F0=9F=87=B3=F0=9F=87=A8=F0=9F=87=B3=F0=9F=87=A8?= =?UTF-8?q?=F0=9F=87=B3?= Date: Sat, 12 Sep 2026 07:47:55 +0800 Subject: [PATCH] Fix typo in stdout function call --- py-more/hello.c-style.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-more/hello.c-style.py b/py-more/hello.c-style.py index ee0fd08..69c4582 100644 --- a/py-more/hello.c-style.py +++ b/py-more/hello.c-style.py @@ -2,7 +2,7 @@ def main() -> int: # // hello, world - sys.stout("hello, world\n"); + sys.stdout.write("hello, world\n"); return 0; main();