Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 OCaml 的顶级 repl 中引用最后评估的表达式?
即 JavaScript 使用$_、python 使用_和 haskell ghci 使用it。
$_
_
it
这不是由ocaml与编译器捆绑的默认 REPL 实现的。-implicit-bindings使用 utop,可以选择使用标志启用此行为。使用此设置,所有匿名绑定都被命名为_0, _1, _2,... 。
ocaml
-implicit-bindings
_0
_1
_2