This repository has no description
1open Eio.Std
2
3let () =
4 Eio_linux.run @@ fun _env ->
5 Switch.run @@ fun sw ->
6 let open Void in
7 let void = empty |> exec [] in
8 Eio.traceln "Spawning the empty void...";
9 let t = Void.spawn ~sw void in
10 let status = Promise.await (Void.exit_status t) in
11 Eio.traceln "Status: %s" (Void.exit_status_to_string status)