代码拉取完成,页面将自动刷新
type unique = unit ref
type ty =
| INT
| STRING
| RECORD of (Symbol.t * ty) list * unique
| ARRAY of ty * unique
| NIL
| UNIT
| NAME of Symbol.t * ty option ref
let rec ty_s = function
| INT -> "int"
| STRING -> "string"
| RECORD _ -> "record"
| ARRAY _ -> "array"
| NIL -> "nil"
| UNIT -> "unit"
| NAME (_, k) ->
(match !k with
| None -> failwith "error"
| Some k -> ty_s k)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。