### 関数の一部
solveRPN :: String -> Double
solveRPN expression = head (foldl foldingFunction [] (words expression))
where foldingFunction stack item = ....
* ポイントフリースタイルに向けて書きなおす
solveRPN expression = head $ foldl foldingFunction [] $ words expression
where foldingFunction stack item = ....
* 更に↓
solveRPN expression = head . foldl foldingFunction [] $ words expression
where foldingFunction stack item = ....
* 更に↓
solveRPN = head . foldl foldingFunction [] . words
where foldingFunction stack item = ....