home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-08-18 | 365 b | 13 lines | [TEXT/Moml] |
- (* CommandLine -- SML Basis Library *)
-
- val name : unit -> string
- val arguments : unit -> string list
-
- (*
- [name ()] returns the name used to start the current process.
- Hence List.nth(argv (), 0) is the first argument.
-
- [arguments ()] returns the command line arguments of the current process.
- Hence List.nth(argv (), 0) is the first argument.
- *)
-