ocaml 出现语法错误[已关闭]

问题描述 投票:0回答:1

当我尝试在 oCaml 中运行此代码时,我在“module usingTable : TABLE =”行上遇到语法错误,并且单词 usingTable 突出显示为红色。我想创建格式如下面的执行示例所示的表。这有什么问题吗?我使用的环境是这个 https://try.ocamlpro.com/fun-demo/tryocaml_index.html#path%3Dtries 因为我无法理解如何在 Windows 中使用 cygwin 或 oCaml Bash。

module type TABLE = 
sig
  type table 
  val emptyTable : table
  val printTable : table -> string
  val create_table : string * string list * (string list) list -> table  
end;;

module usingTable : TABLE =
struct
  let emptyTable = ()
  let table = (string * (string * string list) list) 

  let rec printTable aTable = match aTable with
      ()->""
    | (title, [data]) -> "\n"^title^"\n\n"^printTable(data)
    | [(col,cont)::t] -> col^"   "^printTable([t]) 
end;;

let atable = usingTable.emptyTable;;
let atable = ("Student", [("Id", ["2";"4";"7";"9"]);
                          ("Name", ["Jim";"Linnea";"Steve";"Hannah"]);
                          ("Gender",["Male";"Female";"Male";"Female"]);
                          ("Course",["Geography";"Economics";"Informatics";"Geography"])
                         ]);; 
print_string (usingTable.printTable atable) ;;
syntax-error ocaml
1个回答
0
投票

正如我的评论中所建议的,在再次关注此代码示例(其中不仅包含语法错误,还包含类型错误)之前,您可能需要查看一些其他参考资料。

例如,我建议以下链接:

© www.soinside.com 2019 - 2024. All rights reserved.