learning F#, it seems pretty cool, favourite functional language so far.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123456
  1. module TwoFer
  2. let twoFer (input: string option): string =
  3. match input with
  4. | Some(name) -> "One for " + name + ", one for me."
  5. | None -> "One for you, one for me."