DEBSOURCES
Skip Quicknav
sources / js-of-ocaml / 6.2.0-2 / compiler / tests-io / gh1856.ml
1234567
let () = let ch = open_in "/static/file.txt" in let b = Bytes.create 1024 in while input ch b 0 1024 > 0 do () done; close_in ch