An editor window will appear and you can click on Help and Emacs Tutorial to learn how to use Emacs.% emacs
If Isis was installed on your machine according to our procedure, a special Isis mode will be available in Emacs that provides helpful features like automatic indentation, parenthesis matching, and key word highlighting. By convention, any file containing an Isis program should be named with the .isis extension, such as myprogram.isis or test.isis. The special Isis Emacs mode will be turned on automatically whenever you edit a file with this extension. Or, to enter Isis mode manually, you can type M-x isis-mode.
Running Isis
In general, you can always start an Isis interpreter by simply typing
isis at your shell prompt. You will see something like this:
The ->
is Isis's prompt, letting you know that it is
ready for you to enter expressions. Read the Isis primer for an introduction to
the Isis language and the kinds of expressions you might enter at this
prompt.
If you see a message such as "command not found", something is wrong with the installation or with the software on your computer. Check the troubleshooting section of the Isis Linux information for some commonly experienced problems.
Only one file name is allowed.% isis test1.isis ...
If this program is saved in a file called "addnums.isis", then we can pass arguments to the program like this:(print "There are " (length command-line-args) "things to add." newline) (print "The argument strings are: " command-line-args newline) (set number-args (map eval command-line-args)) (print "The actual numbers are: " number-args newline) (set sum (apply + number-args)) (print "The sum is: " sum newline)
And the output of this command will be this:% isis addnums.isis 23 34 65
Only the arguments that follow the program file name are put into the command-line-args variable. The program file name MUST be present, UNLESS the -s flag is used as described below, in which case no file name should be entered.There are 3 things to add. The argument strings are: [ "23" "34" "65" ] The actual numbers are: [ 23 34 65 ] The sum is: 122
You can override this default behavior by defining an environment variable $ISIS_BOOTSTRAP to be the name of the file you would like Isis to automatically load when it starts up. Usually you will want to add to what is done in the default bootstrap file, so you should manually load it at the beginning of your private bootstrap file like this:
To suppress the loading of the bootstrap files, use the -b flag when starting Isis, as described below.(load (append (get-env "ISIS_ROOT") "/scripts/bootstrap.isis"))
-q | Turn on quiet mode. When quiet mode is engaged, the automatic printing of values and other extraneous output (such as prompts) is suppressed. Quiet mode is useful when writing shell scripts or cgi scripts. |
-d | Turn on debug mode. Debug mode is helpful for finding errors in your program. It is described in more detail in the debugging primitives section of the manual. |
-b | Ignore bootstrap scripts. Using this option prevents the bootstrap scripts (described above) from being loaded at start-up. |
-s | Read from standard input. This flag causes the interpreter to read the program from the standard input, which means a file name should not be entered and the rest of the command line will be treated as arguments for the program. |
Note that when passing flags to the interpreter, you must combine all of the flags into the first argument. For example, to engage quiet mode AND debug mode, you would enter this:
% isis -qd ...
If you intend to write your own libraries of C routines to use inside of Isis, read the information about how to create your own private version of the Isis interpreter.