Hacker News new | ask | show | jobs
by jmreardon 5421 days ago
It goes something like:

  a b c d e f g
becomes:

  a.b(c).d(e).f(g)
1 comments

I've never tried Scala so I'm speaking from ignorance here, but that looks awfully hard to parse for a human reader. I much prefer Haskell's:

     zipWith (\x y->  x ++ " : " ++ show y) names ages