| ZVON > References > Haskell reference |
| Intro / Search / ZVON |
| | Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random |
| Module: | Prelude |
|---|---|
| Function: | |
| Type: | Show a => a -> IO () |
| Description: | |
| Related: |
Input: print "ABC"
Output: "ABC"
Input: print ([1,2,3]++[3,4,5])
Output: [1,2,3,3,4,5]