>>106597700
>Ocaml's dune use sexp for config.
https://dune.build/
https://github.com/ocaml/dune
dune file
(executable
(name hello_world)
(libraries lwt.unix))
hello_world.ml
Lwt_main.run (Lwt_io.printf "Hello, world!\n")
build
dune build hello_world.exe
https://dune.readthedocs.io/en/latest/quick-start.html