Monday, December 17, 2007

How to run Jython

To run Jython, start by entering the
command:
C:\>c:\jython-2.1\jython
The command should result in an introduction similar to this one:
Jython 2.1 on java1.4.1_01 (JIT: null)
Type "copyright", "credits" or "license" for more information.
Finally, we'll exit Jython. At the Jython prompt, enter the following command:
>>> import sys; sys.exit()
Alternatively, you could just press Ctrl+C two times.

No comments: