I am using SML NJ v110.78 on Mac OS X 10.9. I am trying to use command-line arguments from BASH, like so:
sml progname.sml 2.0 1.0.
The program progname.sml compiles and runs and uses the command-line arguments to produce a value (using SMLofNJ.getArgs() function), but at the end of the processing, the REPL returns the error:
!* unable to process `2.0' (unknown extension `0')
!* unable to process `1.0' (unknown extension `0')
-
How do I avoid those final error messages?
Thank you.