Compose and andThen methods

I'm following the tutorial Pattern matching & functional composition on Scala compose and andThen methods. There's such an example: scala> def addUmm(x: String) = x + " umm" scala> def a...