shithub: MicroHs

ref: fc9b604a099d9b054f3f885ec2d0b90b1a8dd624
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