Changeset 3372 for src/Pugs/Shell.hs

Show
Ignore:
Timestamp:
05/18/05 02:43:25 (4 years ago)
Author:
theorbtwo
svk:copy_cache_prev:
4945
Message:

More signatures, a few more haddocks.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Shell.hs

    r2725 r3372  
    3030                          , runOptShowPretty :: Bool} 
    3131 
    32 -- read some input from the user 
     32-- | read some input from the user 
    3333-- parse the input and return the corresponding command 
    3434getCommand :: IO Command 
     
    3737    doCommand input 
    3838 
     39doCommand :: Maybe String -> IO Command 
    3940doCommand Nothing = return CmdQuit 
    4041doCommand (Just line)