From 05c5c37efdaa7437a28d737c76a7e5366f433634 Mon Sep 17 00:00:00 2001 From: Vortex <73261680+Vortex2Oblivion@users.noreply.github.com> Date: Sat, 22 Feb 2025 22:50:53 +0000 Subject: [PATCH] well actually --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c33895..4455b9f 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ import hxpy.Py; class Main { static function main() { Py.initialize(); // Initializes the Python interpreter. - PyRun.simpleString("print(\"Hello World!\")"); // Runs print("Hello World"). + PyRun.simpleString("print(\"Hello World!\")"); // Runs print("Hello World!"). Py.finalizeEx(); // Closes the Python interpreter. } }