package stdio

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module In_channel : sig ... end

An input channel for doing blocking reads from input sources like files and sockets.

module Out_channel : sig ... end

An output channel for doing blocking writes to destinations like files and sockets.

val stdin : In_channel.t
val stdout : Out_channel.t
val stderr : Out_channel.t
val printf : ('a, Out_channel.t, unit) Pervasives.format -> 'a
val eprintf : ('a, Out_channel.t, unit) Pervasives.format -> 'a
val print_endline : string -> unit
val prerr_endline : string -> unit