10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-26 15:12:05 +02:00
QCaml/Utils/Printing.ml

8 lines
134 B
OCaml
Raw Normal View History

2019-03-01 21:56:46 +01:00
let line ?(c='-') n =
String.make n c
2019-03-02 16:48:35 +01:00
let ppf_dev_null =
let oc = open_out "/dev/null" in
Format.formatter_of_out_channel oc
2019-03-01 21:56:46 +01:00