Istari

IO

signature IO =
   sig

      type ioerr
      exception Io of ioerr
      val ioerrToString : ioerr -> string

   end

structure IO : IO