fix outdated tutorial code block
This commit is contained in:
parent
7a7416b084
commit
1bcbcfec26
1 changed files with 4 additions and 4 deletions
|
|
@ -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.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue