File: print_using_pipe.ml

package info (click to toggle)
ocaml-luv 0.5.14-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,504 kB
  • sloc: ml: 11,130; makefile: 6,223; sh: 4,592; ansic: 1,517; python: 38
file content (8 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
let () =
  let pipe = Luv.Pipe.init () |> Result.get_ok in
  Luv.Pipe.open_ pipe Luv.File.stdout |> Result.get_ok;

  Luv.Stream.write pipe [Luv.Buffer.from_string "Hello, world!\n"]
    (fun _ _ -> ());

  ignore (Luv.Loop.run () : bool)