How to use JES

The top portion of JES is the editor window, which can be used to write new Jython files or modify existing Jython files. The bottom portion of JES is the command window, which allows you to execute functions that are written in the editor window.

The following is a brief example of how to use JES to write new code:

First, type the following into the editor window:
def Test():
    print 'test'

After this code has been typed in the editor, pressing the LOAD button will load that code into the JES (Note: you will be prompted to save the file if you have not already done so). Code that has been loaded can be called from the command window.

To call the loaded Test() function, simply type the following in the command window, and then press enter:

Test()
You should then see 'test' printed in the command window.