我是 OCaml 的新手。我在 MacOS 上安装了带有最新自制软件的 utop(版本 2.6.0),安装了带有opam install core base
.
这是我的.ocamlinit
:
#use "topfind";;
#thread;;
#require "core.top";;
open Base;;
open Core;;
我遇到了一个类型的错误FI
:
utop # FI;;
Line 1, characters 0-2:
Error: The constructor FI expects 3 argument(s),
but is applied here to 0 argument(s)
FI
OCaml 中的类型是什么?
这是 TAPL 中引入的类型(info
https://www.cis.upenn.edu/~bcpierce/tapl/ ):,type info = FI of string * int * int | UNKNOWN
UNKNOWN
OCaml 中的类型是什么?