6 ms·
It goes something like: a b c d e f g becomes: a.b(c).d(e).f(g)
by jmreardon 15y ago
It goes something like:
a b c d e f g
becomes:
a.b(c).d(e).f(g)
- tincholio 15y agoI'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