project_init 3.1.23

Quickly initialize projects from a template.
Documentation
1
2
3
4
5
6
7
8
import           Lib
import           Test.Hspec

main :: IO ()
main = hspec $
    describe "head'" $
        parallel $ it "gets the head of an infinite list" $
            head' [1..] `shouldBe` (Just 1 :: Maybe Integer)