mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-10-31 19:23:40 +01:00
8 lines
134 B
OCaml
8 lines
134 B
OCaml
let line ?(c='-') n =
|
|
String.make n c
|
|
|
|
let ppf_dev_null =
|
|
let oc = open_out "/dev/null" in
|
|
Format.formatter_of_out_channel oc
|
|
|