Files
wehub-resource-sync f30f816e96
build-deb / build (push) Has been cancelled
build / build (5.2.0+ox, ubuntu_x64_8_cores, 231c88c2e564fdca40e15e750aacad5fb0887435) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:29:01 +08:00

12 lines
244 B
OCaml
Executable File

#!/usr/bin/env ocaml
let () =
let r = open_in "/dev/zero" in
let w = open_out "/dev/null" in
let buf = Bytes.create 4096 in
while true do
let bytes_read = input r buf 0 (Bytes.length buf) in
output w buf 0 bytes_read
done
;;