ocamldebug 的 REPL?
使用 OCaml 时我错过的 GHC (Haskell) 的一件事是没有统一的调试器/REPL。调试器和 REPL 是完全分开的,这太疯狂了!你不能像在 ghci 中那样想出一个随机函数调用并在运行过程中执行它。
有什么提示、解决方法吗?
One of the things that I miss from GHC (Haskell) when using OCaml is that there is no unified debugger/REPL. The debugger and the REPL are completely separate, which is crazy! You can't think of a random function call and execute it in the running process, like you can in ghci.
Any tips, workarounds for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ocaml 有一个不可调试的 REPL,它是 ocaml 命令。
您还可以在
ocaml
上使用ocamldebug
,但我不确定它会对您有帮助。ocamldebug
调试器的主要用途是(在使用ocamlc
编译的应用程序上),就像在 C 语言中使用gdb
一样。There is a REPL for Ocaml which is not debuggable, it is the
ocaml
command.You might also use
ocamldebug
onocaml
, but I'm not sure it would help you.The
ocamldebug
debugger is mostly used (on your application compiled withocamlc
) as you would usegdb
for C.