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();