doctest
Haskellのテスト
コメントとしてテストを書く
利用者に見せたい振る舞いを書く
ghciの入力と結果をそのまま書く
code:hs
-- |
-- >>> add 2 3
-- 5
add x y = x + y
https://haskell.e-bigmoon.com/stack/test/doctest.html
https://kazu-yamamoto.hatenablog.jp/entry/20121205/1354692144