私は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の型は何ですか?
info
TAPL ( https://www.cis.upenn.edu/~bcpierce/tapl/ )で導入された型は次のとおりですtype info = FI of string * int * int | UNKNOWN
。
UNKNOWN
OCamlの型は何ですか?