diff options
Diffstat (limited to 'test/flesh_hello.ml')
-rw-r--r-- | test/flesh_hello.ml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/flesh_hello.ml b/test/flesh_hello.ml new file mode 100644 index 0000000..c16944f --- /dev/null +++ b/test/flesh_hello.ml @@ -0,0 +1,6 @@ +open Lwt.Syntax + +let () = Lwt.async @@ + fun () -> + let+ hello = Lwt_stream.to_string Flesh.hello + in print_endline hello |