OCaml By Examples

files

utop

Reading the lines of the `.gitignore` file contained in this repository.
utop # In_channel.read_lines ".gitignore";;
- : string list = ["_build"; "dist"]
Write `_build` into the `.gitignore` file.
utop # Out_channel.write_all ".gitignore" ~data:"_build"
next: dune