Name: Anonymous 2015-10-17 14:21
C can do arrays and trees. Haskell can do trees but cannot do arrays. C is the winner.
(+ 1 2 3 (* 4 5 6) 7 8 9)
without parens?+ 1 2 3 * 4 5 6 7 8 9
does not work+ 1
2
3
* 4
5
6
7
8
9
+ 1 2 3 * 4
5
6
7 8 9
just looks extraordinarily strange to me, and would get worse with more complicated expressions.(+ 1
2
3
(* 4
5
6)
7
8
9)
(+ 1 2 3 (* 4
5
6)
7 8 9)