loc 0.5.0

Count lines of code (cloc) fast.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{-

{-
Nested comment
-}

-- Note: still commented
fibs :: [Int]
fibs = 1 : 1 : zipWith (+) fibs (tail fibs)

-}

main :: IO ()
main = print [1..]