ocaml 函数function示例代码
代码语言:ocaml
所属分类:其他
代码描述:ocaml 函数function示例代码
代码标签: 示例
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
(* here's a function of 2 parameters *) let f x y = x + y;; (* function call *) f 3 4;; (* ⇒ 7 *) (* do not pu.........完整代码请登录后点击上方下载按钮下载查看
网友评论0