RosettaCodeData/Task/Synchronous-concurrency/OCaml/synchronous-concurrency-4.ocaml
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

6 lines
141 B
Text

let _ =
let count = new_channel ()
and lines = new_channel ()
in
let _ = Thread.create (printer lines) count
in reader count lines