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.