val from_string : string -> string -> unit
input_file filename str creates a file named filename whose content is
str.
val to_string : string -> string
to_string filename returns in a string the content of
the file filename.
val iter : (string -> unit) -> string -> unit
iter f filename read filename line by line, applying f to each
one.
Go to the first, previous, next, last section, table of contents.