Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Here you go: an example of top-down FP

by tmoertel (Chaplain)
on Jun 28, 2005 at 01:43 UTC ( [id://470445]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    module Main where
    
    ...
    showOutput = id
    process    = id
    readInput  = id
    
  2. or download this
    module Main where
    
    ...
    
    show1 key count = (unwords [key, show count] :)
    accumulate hash key = Map.insertWith (+) key 1 hash
    
  3. or download this
    module Main (main) where
    
    ...
    control f  = readFiles >>= writeIndex . f
    readFiles  = getArgs >>= liftM concat . mapM readFile
    writeIndex = writeFile "words.index"
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://470445]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-03-29 15:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found