author | lcp |
Mon, 27 Feb 1995 17:27:50 +0100 | |
changeset 907 | 61fcac0e50fc |
parent 906 | 6cd9c397f36a |
child 908 | 1f99a44c10cb |
src/Pure/NJ.ML | file | annotate | diff | comparison | revisions |
--- a/src/Pure/NJ.ML Mon Feb 27 17:11:25 1995 +0100 +++ b/src/Pure/NJ.ML Mon Feb 27 17:27:50 1995 +0100 @@ -8,8 +8,9 @@ (*** Poly/ML emulation ***) -(*To exit the system -- an alternative to ^D *) -fun quit () = System.Unsafe.CInterface.exit 0; +(*To exit the system with an exit code -- an alternative to ^D *) +val exit = System.Unsafe.CInterface.exit; +fun quit () = exit 0; (*To change the current directory*) val cd = System.Directory.cd;