实现文件中出现意外的关键字'type'

时间:2014-02-06 03:32:17

标签: f#

在VS 2008,F#2.0中,编译ML脚本时出错 实现文件中的意外关键字'type'

#indent "off" pragma

   type Hw <'o,'m>   =   cat of <'m->'o>*<'m->'o>*<'o->'m>;

原始

datatype ('o,'m) Hw  =   cat of ('m->'o)*('m->'o)*('o->'m);

1 个答案:

答案 0 :(得分:2)

你可能想要

type Hw<'o,'m> = | Cat of ('m -> 'o) * ('m -> 'o) * ('o -> 'm)