eval opam config env
utop
ocamlc -o hello.byte hello.ml
./hello.byte
rm -rf hello.byte hello.cmi hello.cmo
Create a dune file and put
(executable (name hello))
Create a dune-proj and put (lang dune 3.4)
dune build hello.exe
dune exec ./hello.exe
dune clean