Skip to content

Commit

Permalink
Add paragraphe for Windows case
Browse files Browse the repository at this point in the history
On Windows user must use ";" not ":" for separation.
  • Loading branch information
nadege committed May 2, 2016
1 parent af7de06 commit d3c5c5a
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/tutorials/tutorial-0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,20 @@ You will see output like the following:
This will produce an ``__init__.class`` in the ``python/example`` namespace.
This classfile can run on any Java 6 (or higher) VM. To run the project, type:

* On Linus / OS X

.. code-block:: bash
$ java -classpath ../voc/dist/python-java.jar:. python.example.__init__
Hello, World
* On Windows

.. code-block:: bash
$ java -classpath ../voc/dist/python-java.jar;. python.example.__init__
> java -classpath ../voc/dist/python-java.jar;. python.example.__init__
Hello, World
Congratulations! You've just run your first Python program under Java using
VOC! Now you're ready to get a little more adventurous.

0 comments on commit d3c5c5a

Please sign in to comment.