diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -12,6 +12,21 @@
 
     (a) = 2   (a+1) = 3       (map (+a) [1..3]) = [3,4,5]
 
+by turnint this String
+
+```haskell
+"a, a+1, map (+a) [1..3]"
+```
+
+into this expression
+
+```haskell
+( "(a) = " ++ show (a)            ++ "\t  " ++
+  "(a+1) = " ++ show (a + 1)      ++ "\t  " ++
+  "(map (+a) [1..3]) = " ++ show (map (+ a) [1 .. 3])
+)
+```
+
 Have a look at the [list of features](FEATURES.md).
 
 *Concieved at [this StackOverflow question](http://stackoverflow.com/q/31349556/499478).*
diff --git a/dump.cabal b/dump.cabal
--- a/dump.cabal
+++ b/dump.cabal
@@ -2,7 +2,7 @@
 -- see http://haskell.org/cabal/users-guide/
 
 name:               dump
-version:            0.2.4
+version:            0.2.5
 
 synopsis:           Dumps the names and values of expressions to ease debugging.
 
