LIS 1.0
hat is LIS?
This is a command line utility for LISP programers. It can be used for two purposes:
- Help finding an error in your LISP code related to brackets
Syntax errors realted to brackets are found automaticaly. If you
have a trouble to find an error related to brackets which is not
a syntax one this utility will help you beacuse it can format code.
- Formating LISP source code.
The begining of each line of your code is reformated so that open and
it's coresponding closed bracket are aligned. Please note that this
formatting doesn't affect your habits of code formatting. Whatever
you wish to be in a separate line will stay there.
sage:
Use a filename as an argument. For example:
LIS haos.lsp
will use the example you have in this archive
Another version named PLIS is redirection "friendly". You can used it to save yourself a copy of formated source code.
For example, typing:
PLIS >order.lsp haos.lsp
would create an order.lsp out of haos.lsp with nice code formating.