fix outdated tutorial code block

This commit is contained in:
InspectorCaracal 2024-01-02 19:54:58 -07:00 committed by GitHub
parent 7a7416b084
commit 1bcbcfec26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,11 +98,11 @@ multi-line interpreter.
You now only need to import once to use the imported function over and over. You now only need to import once to use the imported function over and over.
> from world.test import hello_world > from world.test import hello_world
> hello_world() > hello_world(me)
Hello World! Hello World!
> hello_world() > hello_world(me)
Hello World! Hello World!
> hello_world() > hello_world(me)
Hello World! Hello World!
> quit() > quit()
Closing the Python console. Closing the Python console.