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: | shows |
Type: | Show a => a -> ShowS |
Description: | it concatenates the first argument to the second one |
Related: | lex, read, reads, show |
Bibliography: | The Read and Show Classes [ A Gentle Introduction to Haskell ] |
Input: shows 12 "-14-16"
Output: "12-14-16"
Input: shows "A" "SSS"
Output: "\"A\"SSS"
Input: shows 'A' "SSS"
Output: "'A'SSS"