1

在 OCaml 的 tuareg 模式下,如果结果如下所示,我看不到执行结果。

# function ();;
- : tree_t =
Node (Node (Node (Node (Node (Node (Node
             (Node (Node (Node (Empty, 1, Empty), 2, Empty), 3,
      ...), 
    ...),
  ...))

我看不到执行结果,因为某些部分由“...”显示。如何在 OCaml 的 tuareg 模式下查看缓冲区的所有结果?

4

1 回答 1

1

使用print_depthprint_length指令来增加打印数据的数量,例如,

# #print_depth 100500;;
于 2016-10-23T05:42:13.360 回答