Kev*_*ith 0 ocaml reason
我如何能明确标记的类型let myList = [1, 2, 3];为list of int's?
let myList = [1, 2, 3];
list of int's
我let xs: 'int list = [1,2,3];通过Try ReasonML尝试失败了.
let xs: 'int list = [1,2,3];
vku*_*kin 6
它let xs: list(int) = [1,2,3];在Reason或let xs: int list = [1; 2; 3]OCaml中.
let xs: list(int) = [1,2,3];
let xs: int list = [1; 2; 3]
归档时间:
7 年,9 月 前
查看次数:
86 次
最近记录: