Name: Anonymous 2013-06-30 16:10
Sometimes I think OOP code can be easier to read than functional or procedural
versus
is it possible for a language to allow you to write in both ways? I think F# has something like it.
[1..10].map(x => x * 2).forEach(print)versus
forEach(map([1..10], x => x * 2)), print)is it possible for a language to allow you to write in both ways? I think F# has something like it.