Because I did not find a good example (at least not on the first result page :D) for the performance difference between boxed and unboxed types in Haskell, I created one.
And here is the quite impressive result:
$ ghc boxed.hs
$ ghc -XMagicHash unboxed.hs
$ time ./boxed
0
./boxed 16,34s user 0,03s system 99% cpu 16,397 total
$ time ./unboxed
0
./unboxed 0,85s user 0,00s system 99% cpu 0,865 total