我正在使用版本 4 的 Ocaml。当我以交互方式定义某种类型时,解释器会立即打印出该类型的字符串表示形式:
# type foo = Yes | No;; <-- This is what I entered
type foo = Yes | No <-- This is what interpreter bounced
但在我键入更多定义后,有时我想再次查看该类型的文本表示。
在 Haskell 中,我可以输入 ":t foo"。
我怎样才能在 Ocaml 中做到这一点?