From 1aee4bb936dd2bafcbccea3f449ef34e385bff29 Mon Sep 17 00:00:00 2001 From: "\"Vijay Pal\"" Date: Tue, 28 Jan 2025 19:07:00 +0530 Subject: [PATCH] Update hello.py to Python 3 print syntax --- scripts/hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/hello.py b/scripts/hello.py index 52b7bc0..6fbe5b2 100644 --- a/scripts/hello.py +++ b/scripts/hello.py @@ -1 +1 @@ -print "hello, world!" \ No newline at end of file +print("hello, there!")