dune utop 一些可执行文件

dune utop some executable

对于单个文件可执行文件,如何在 dune utop 中加载它?

准确地说,在目录 lib 和相应的 dune 文件中包含库的项目中,我可以启动 dune utop lib 然后 open Lib.MyModule 这将加载文件 MyModule.ml.

对于没有子目录且根目录下有以下文件的项目,dune 文件

的等效项是什么?
(executable
  (name auth)
  (libraries ezjsonm cryptokit))

和一个文件auth.ml

let hi = "value"

我想从 dune utop

中的那个文件加载值

dune 目前不支持此功能。您需要有一个库才能使用 dune utop。有点可惜。