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: print
Type: Show a => a -> IO ()
Description:
Related:

Example 1

Input: print "ABC"

Output: "ABC"

Example 2

Input: print ([1,2,3]++[3,4,5])

Output: [1,2,3,3,4,5]