Merge pull request #3390 from InspectorCaracal/patch-21
Fix tutorial code block
This commit is contained in:
commit
e37419972e
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