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

Module: Prelude
Function: putStrLn
Type: String -> IO ()
Description: writes out a string and the newline character to the standard output
Related:

Example 1
Program source: 

main = putStrLn "Hello"

Output: Hello

Output: