Comment by Jtsummers

Comment by Jtsummers a day ago

4 replies

> English Language is the best general purpose conveyance of arbitrary ideas, and it has syntax rules just like programming languages. It's "best" by the metric of being "easiest for humans to understand". That's what I mean by best, in this case.

Given that most people alive today don't understand English at all, I don't think this claim holds up very well.

> For example "(add, 1, 2)" is axiomatically the best way to express adding two numbers, in a way that scales to arbitrary numbers of operations. It's superior to "(1+2)" because the plus sign is a single character (cannot scale), and therefore there are a limited number of them, and using symbols means humans have to memorize them rather than simply reading their name.

I'd be willing to wager that "1+2" is understood by far more people across the globe than "(add, 1, 2)".

quantadev a day ago

* I use "English Language" as a synonym for "Human Language". However even if you want to be pedantic and interpret all my words in the literal sense, everything I said is still literally true.

* I never said LISP format was widely understood.

  • Jtsummers a day ago

    > I use "English Language" as a synonym for "Human Language".

    That was unclear given you kept calling out English, and not natural or human language more broadly in the rest of your comment. But I'll go with it.

    > all my words in the literal sense, everything I said is still literally true.

    No, they aren't. You need to make a stronger case than "Because I declared it axiomatically true".

    + has become part of nearly every language already, what's the value of picking one word (add) from one language (English) to replace it? Or to be more generous to say that every language should substitute for + whatever their language's word is. Now they can't communicate without a translator. Or, they could just use + as has been done for centuries. Why make things harder on ourselves?

    • quantadev a day ago

      The point about `(+ 1 2)` v.s. `1+2` is about the fact that the LISP syntax generalizes to all computations, whereas mathematical expressions do not. The beauty of LISP is that one simple syntax solves everything about computation in the axiomatically simplest way possible.

      • lproven an hour ago

        > one simple syntax solves everything about computation in the axiomatically simplest way possible.

        So what about RPN? What about Forth and Postscript? Just as simple... just as terse... just as efficient... just as general.

        And, for me, just as unreadable.