• Sagar Acharya
    link
    fedilink
    3
    edit-2
    2 years ago

    Ideal Programming Language

    Above is a post I wrote a while ago. Check it out.

    That’s an interesting link. But in my view, that’s just 1 variable. eg. Python is written in C so on lower level, it would be in C code and it isn’t python. A better way is to see it from lines of code to binary which is a complete conversion.

    • ☆ Yσɠƚԋσʂ ☆OP
      link
      fedilink
      12 years ago

      I agree that lines of code is not the only metric to be considered. I agree with your post that a good language should be both simple and expressive. Ideally, you have a small and consistent syntax with a few general concepts that can be applied to a wide range of problems. For me, Clojure hits the sweet spot. I wrote in more detail about why that is here.

      • Sagar Acharya
        link
        fedilink
        12 years ago

        Very interesting.

        The issue I find with Clojure is it’s link to JVM.

        VMs are always mostly controlled by the data centre hardware which hosts it. I don’t find it secure. Ideally, I think C without pointers and an import system like python would be best. I guess Go is it but Go doesn’t have good compilers. gccgo is gigantic. In my view, C without pointers with python like import system with a compiler like tcc would be best. All modules should be present as packages of OS rather than pip so that all trust is given to OS instead of repos which anyone can insert malware in.

        Clojure is incredible. But something like tcc should be made straight from clojure to binary. JVM is absolutely unacceptable!

        • ☆ Yσɠƚԋσʂ ☆OP
          link
          fedilink
          02 years ago

          First of all, JVM runs perfectly fine on a local machine and in many cases it can even beat C for raw performance thanks to its JIT. It has a heavier memory footprint, but that’s not a huge issue for a lot of use cases. However, it’s possible to run Clojure without the JVM nowadays. Babashka which is a native binary compiled with GraalVM and ClojureScript that targets Js runtimes. There is also Janet which is a Clojure inspired language that’s tiny and embedable.