6 lines
151 B
OCaml
6 lines
151 B
OCaml
open Lwt.Syntax
|
|
|
|
let () = Lwt.async @@
|
|
fun () ->
|
|
let+ hello = Lwt_stream.to_string Flesh.hello
|
|
in print_endline hello
|