> For example, consider these two snippets:
>
> [Clojure]
> (if x
> (foo y)
> (bar y))
>
> [Python]
> if x:
> foo(y)
> else:
> bar(y)
>
Yeah, but then, in plain old Java:
if x {
foo(y);
} else {
bar(y);
}
which is not that different at all. The point is that these trivial
micro-snippets don't tell you much about how the language fit into the
real-world problems. They may indicate how the language will be
approachable to beginners, but noting more...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---