Stop comparing programming languages

  • Python is versatile
  • JavaScript is powerful
  • Ruby is elegant
  • C is essential
  • C++
  • Java is robust
  • pelya@lemmy.world
    link
    fedilink
    arrow-up
    6
    arrow-down
    1
    ·
    14 days ago

    It’s made worse by the fact C++11 made a lot of solutions for the deep problems in the language. As the C++ tradition dictates, the problems themselves are carefully preserved for backward compatibility, the solutions are like a whole different language.

    And Lisp is small - the first Google result provides a Lisp interpreter in 117 lines of Python code.

    • BatmanAoD@programming.dev
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      13 days ago

      C++11 also introduced new problems, such as the strange interaction between brace-initialization and initializer-lists (though that was partially fixed several years later), and the fairly arcane rules around move semantics with minimal compiler support (for example, it would be great if the standard required compilers to emit an error if a moved-from object were accessed).

      I know Lisp is minimal, I’m just saying that I expect there are Lisp fans who won’t acknowledge (or would excuse) any shortcomings in the language, just as there are C++ fans who do the same for C++.