Running the interactive console


The interactive console will run a file called init.ss from the current directory.

Use the TAB key for context sensitive command completion in the REPL.

Running programs

Evaluating expressions from the command line

echo (+ 1 2) | IronScheme.Console

prints 3

Compiling programs


Note:
Compiling is not really compiling. It only does the expansion process.
This however, is normally a time consuming process, depending on macro usage.
Thus, the files can load and compile in a very quick time.