按照https://dune.readthedocs.io/en/stable/quick-start.html上的教程,我创建了一个hello_world.ml
包含
print_endline "Hello, world!"
和一个dune
包含
(executable
(name hello_world))
然后输入
dune build hello_world.exe
但它抱怨其他(完全不相关的)文件中的错误。
dune
即使文件中没有提到其他文件(甚至递归地),沙丘是否有可能查看其他文件?以及如何预防?