))))))))))))))))))))))))))))))))))))))))))))))
Programmer Humor
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
I love how much of a kamikaze this is: "yeah that thing LISP does terribly? Non-LISP languages do it too!"
Also this just looks like bad code, not a limiting feature of the language.
Except LISP doesn't do it terribly, and in my experience there are a lot less parens and other separators than in most languages.
Ok... but the comic doesn't say that...
Then there's Haskell where arguments to a function are given with spaces
I have fond memories of RPL on the HP48 calculators where you would give arguments as a stack, then call the function. Something like (a+b)*c could be written C A B + * Such fun!
Reverse Polish notation, right? Operand operand operator?
That's the one. The Wikipedia article has some extensive examples, too.
Its weird syntax prepared us well to face the horror of assembly language later on, so I have a certain fondness for it. That and I had absolutely no point of comparison at the time, haha!
It makes sense if you just think of everything as a function.
As a parentheses hater my personal hell would be having to audit and refactor a lisp codebase
My work maintains a legacy AutoCAD addin written in Lisp... we are considering dropping support because it's so difficult to maintain with the original dev gone
Oof. Is that the official plugin language? Siemens NX uses "grip" which is a fork of TCL. And they require purchase of a pricy package to sign and compile code so NX will run it, so we only had one programmer for our custom grip functions.
Having worked with Clojure for over a decade now, I find it far easier to refactor than most other languages I've touched.
The real interesting debate is between ((f) 1)
and f()(1)
.