我正在阅读书籍类型和编程语言(https://www.cis.upenn.edu/~bcpierce/tapl/)。
在它的第 4 章,算术表达式的 ML 实现中,它介绍了info
. 我在这里下载了它的 ocaml 源代码arith.tar.gz:https ://www.cis.upenn.edu/~bcpierce/tapl/checkers/ 。
这是开始support.ml
:
open Format
module Error = struct
exception Exit of int
type info = FI of string * int * int | UNKNOWN
我有几个问题:
第一季度
我在 MacOS 上安装了带有最新自制软件的 utop(版本 2.6.0),安装了带有opam install core base
. 这是我的.ocamlinit
:
#use "topfind";;
#thread;;
#require "core.top";;
open Base;;
open Core;;
它给了我警报:
utop # open Format;;
Line 1, characters 5-11:
Alert deprecated: module Base.Format
[2016-09] this element comes from the stdlib distributed with OCaml.
[Base] doesn't export a [Format] module, although the
[Caml.Format.formatter] type is available (as [Formatter.t])
for interaction with other libraries.
utop # open Base.Format;;
Line 1, characters 5-16:
Alert deprecated: module Base.Format
[2016-09] this element comes from the stdlib distributed with OCaml.
[Base] doesn't export a [Format] module, although the
[Caml.Format.formatter] type is available (as [Formatter.t])
for interaction with other libraries.
什么是图书馆Format
和Base.Format
?我现在还需要打开它们吗?
第二季度
module Error = struct
卡在 utop 解释器中。这条线是什么意思?为什么一直卡在utop?
第三季度
是什么exception Exit of int
意思?
第四季度
什么是FI
和UNKNOWN
在type info = FI of string * int * int | UNKNOWN
?