Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 1abfe597bc89458ccaa645cd148862bb > files > 45

ocaml-ocamlnet-doc-3.7.3-3.mga4.noarch.rpm

(* Copies from stdin to stdout *)

#use "topfind";;
#require "equeue";;

open Uq_engines

let main() =
  let e = Unixqueue.create_unix_event_system() in
  let cp = new copier (`Unidirectional(Unix.stdin,Unix.stdout)) e in
  Unixqueue.run e
;;


main();;