------------------ SML --------------
Compile in sml by:

use "load";

Run in sml by:

Main.main([]);   for only one repetition  

Main.main(["10"])  for some number of repetitions,  here 10 reps

Note that there is a special version of interp.sml for use
with SML NJ 1.10, where the function exit returns something of type
word instead of int.

----------------- MLJ ------------------
Compile in mlj by:

make MLApp.MLApp Main

Run from within mlj by:

run                for one repetition,  

or 

run 10             for some number of repetitions,  here 10 reps

---------------- Java -------------------

Mlj creates MLApp.zip containing all necessary class files.  The unzipped
class files are in the sub-directory Classes/. 

java Main          for one repetition,

or

java Main 10       for some number of repetitions, here 10 reps

The program will create a file called TEST.
The correct output is found in Classes/TEST.correct.
