[pypy-svn] r64180 - pypy/trunk/pypy/doc
arigo at codespeak.net
arigo at codespeak.net
Thu Apr 16 19:21:52 CEST 2009
Author: arigo
Date: Thu Apr 16 19:21:52 2009
New Revision: 64180
Modified:
pypy/trunk/pypy/doc/getting-started.txt
Log:
issue430 resolved
Thanks Jonathan.
Modified: pypy/trunk/pypy/doc/getting-started.txt
==============================================================================
--- pypy/trunk/pypy/doc/getting-started.txt (original)
+++ pypy/trunk/pypy/doc/getting-started.txt Thu Apr 16 19:21:52 2009
@@ -499,7 +499,7 @@
with simple types like integers and strings.
If you prefer to run the compiled code directly, you will find it in
-one of the ``/tmp/usession-*`` directories. You can run it like so:
+one of the ``/tmp/usession-*`` directories. You can run it like so::
$java -cp /tmp/usession-<username>/pypy/ pypy.Main 4 5
9
@@ -509,15 +509,15 @@
To successfully use the JVM you will need to have both a `JDK`_
installed (at least version 5), and the `Jasmin assembler`_.
Furthermore, you need a script on your path called ``jasmin`` which
-runs the Jasmin jar file, something like the following:
-
-.. _`JDK`: http://java.sun.com/javase/downloads/
-.. _`Jasmin assembler`: http://jasmin.sourceforge.net/
+runs the Jasmin jar file, something like the following::
$ cat `which jasmin`
#!/bin/bash
java -jar $PATH_TO_JASMIN_JAR "$@"
+.. _`JDK`: http://java.sun.com/javase/downloads/
+.. _`Jasmin assembler`: http://jasmin.sourceforge.net/
+
A slightly larger example
+++++++++++++++++++++++++
More information about the Pypy-commit
mailing list