shithub: MicroHs

ref: 65a2249a1ba81f0448c0e9f02e9d65d176b88cfd
dir: /Tools/Count.hs/

View raw version
import System.Environment
import Data.List

main = do
  [pat, fn] <- getArgs
  file <- readFile fn
  let n = length $ filter (isPrefixOf pat) (tails file)
  print n