エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント3件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Introduction to QuickCheck2 - HaskellWiki
A quick introduction to QuickCheck2, and testing Haskell code. Motivation In September 2006, Brun... A quick introduction to QuickCheck2, and testing Haskell code. Motivation In September 2006, Bruno Martínez asked the following question: -- I've written a function that looks similar to this one getList = find 5 where find 0 = return [] find n = do ch <- getChar if ch `elem` ['a'..'e'] then do tl <- find (n-1) return (ch : tl) else find n -- I want to test this function, without hitting the files
2012/06/14 リンク