/usr/share/doc/mlton/examples/command-line.sml is in mlton-doc 20100608-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | (* print out the command name and all of the command line arguments on separate
lines *)
val _ =
(print(CommandLine.name()) ;
print "\n" ;
app (fn s => (print s ; print "\n")) (CommandLine.arguments()))
|