ZVON > References > Haskell reference
| Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | >> IO << | Directory | System | Time | Locale | CPUTime | Random

Module: IO
Function: stdin
Type: Handle
Description: returns handle to the standard input channel
Related:

Example 1
Program source: 

import IO

main = do x <- hGetLine stdin
          putStr x

Input: Hello!

Output: Hello!