------------------ 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

----------------- 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
