This directory contains an implementation of the Edinburgh
Standard ML Library for Standard ML of New Jersey 0.74.
It is more efficient than the portable version in that it
uses the built-in functions on strings, arrays, vectors and
bytearrays.

To use it with version 0.66 of SML/NJ, move build_all.sml.66
to build_all.sml, delete Core/Vector.sml, change Core/Array.sml
as instructed in that file, and change the following lines in
StreamPair.sml:

fun execute s =
	let val (i, os) = IO.execute(s, [])
	...

to:

fun execute s =
	let val (i, os) = IO.execute s
	...


RCS LOG

$Log: README,v $
# Revision 1.3  1991/10/29  19:32:12  db
# Updated to SML/NJ 0.74.
#
# Revision 1.2  1991/10/22  19:21:22  db
# Added note about SML/NJ 0.74
#
# Revision 1.1  91/09/13  14:24:27  14:24:27  db (Dave Berry)
# Initial revision
# 
