4 lines
99 B
OCaml
4 lines
99 B
OCaml
let () =
|
|
let ic, oc = init_socket "localhost" 256 in
|
|
output_string oc "hello socket world";
|
|
;;
|