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

123
  1. module Leap
  2. let leapYear (year: int): bool = year % 4 = 0 && (year % 100 <> 0 || year % 400 = 0)