komorebikoboshiのブログ

プログラミング記事(趣味レベル)が多め。

2016-03-19から1日間の記事一覧

F#でズンドコした

今更感あるけどF#でズンドコした。 type Zundoko = Zun | Doko (* F# 4.0より前のバージョンの場合 let rand = new System.Random () *) let rand = System.Random () let randomZunDoko () = if rand.Next(2) = 0 then printfn "ズン"; Zun else printfn "…