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. } }