• @[email protected]
    link
    fedilink
    1716 hours ago

    50 years after BASIC and nothing is written in BASIC.

    To replicate its success from the 80s we would need a language that is simple enough for everyone to learn but actually performant and powerful enough to write an entire operating system and application stack in. Then perhaps non-programmers would feel more inclined to look under the hood, see how things work, and change their program’s behavior.

    The problem though, is that for any reasonably complex system or application, you need to use structured programming. This is what enabled the levels of abstraction that we use to break down programs into layers that can be understood in pieces, and it is what makes large complex software possible without ending up with a mess of spaghetti.

    However it is these abstractions that turn a software’s code into a Domain Specific Language, and endless APIs that need to be learnt and understood by the programmer.

    For programmers it is normal to us that when we want to work on a new codebase we have to learn the idiosyncrasies of the codebase, and learn its DSL and the APIs that it uses, or exposes. But for a non-programmer, this would essentially feel like learning everything about programming from scratch. They would have to become a programmer and develop maintainer skills just to understand what they want to change. (This is why programmer is still a job).

    Perhaps the real value of BASIC was that without structured programming, every program was just a pile of spaghetti that even a child could pull apart with a fork.

    • @TrickDacy
      link
      1515 hours ago

      Why would a new hypothetical language need to be able to build an OS for everyday people to take interest? I don’t see how that would be the case at all

    • qaz
      link
      English
      1014 hours ago

      I don’t see how an accessible language should also need to be able to be used for system programming. A simpler python seems like a better option.

      • @[email protected]
        link
        fedilink
        English
        29 hours ago

        Scratch is an example of a simple programming language that could be taken pretty far, but it’s often dismissed as a kid’s game.

        Or even things like IFTTT, or Apple’s Automator app (formerly called just AppleScript) that gave vaguely python like tools to less/non-programmers.

        I worked on a programming tool to bring beginners from a block language like scratch up through C or Python, but we couldn’t get enough funding to finish it and google just looked at us and tried to poorly rip it off (made raising funding to compete with them even harder).