logoalt Hacker News

evdubslast Sunday at 8:37 PM1 replyview on HN

> Show me a convincing example of something that's simple/clear/elegant/superior in Lisp, and how difficult/complicated/ugly/impossible it would be to do the same thing in Java/C++/Ruby/Python.

Serialize and deserialize data. You're currently using something like XML or JSON for a human readable data serialization format in those languages. JSON and XML are not first class components of those languages. S-expressions are a better version of JSON and are first class components of Lisp.


Replies

bccdeelast Sunday at 9:29 PM

That's a bad thing, though. You should not be `eval`-ing your config file, much less untrusted messages.

show 2 replies