首页 > 其他 > 详细

[ReasonML] Named & optional params

时间:2017-10-28 10:29:17      阅读:222      评论:0      收藏:0      [点我收藏+]
// ::country is named param
// ::country=?: which make it optional
// because we make ::country=? optional named param, we may pass in or may not pass in
// we need use ‘()‘ --> (): string => , which is unit, to call the function
let rock (::country=?) (song: string) (times: int) () :string => 
  switch country {
      | None => {j|Rocked out to $(song) $(times) times somewhere |j}
      | Some g => {j|Rocked out to $(song) $(times) times in $(g) |j};
      };

let output = rock "Nad Tatrou sa blýska" 1 ();  // call ()unit the function
let output2 = rock "Nad Tatrou sa blýska" 1 country::"fff" ();  // pass the country::"China" and then call the function ()

 

[ReasonML] Named & optional params

原文:http://www.cnblogs.com/Answer1215/p/7745827.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!