shithub: MicroHs

ref: 0424d9cae9e87a6c3d3ecd6d5d8e36fbac1892af
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