• @CameronDev
    link
    48 months ago

    Sorry, I meant in the context of OPs question (so i guess up to them to set the rules). As in, you pick Python for the rest of your life, does that lock you out of C libraries? Its a bit of a rabbithole though, as many language runtimes would get excluded as well. There arent many languages that actually stand alone.

    • @[email protected]
      link
      fedilink
      38 months ago

      Ah, right, my interpretation is that as long as you don’t need to touch the source code, you’re good.

      But yeah, it’s certainly not as clear cut. My pick would actually be Rust, because you can use it for pretty much everything, including web frontends via WebAssembly.
      However, in that case, you still write HTML+CSS, which technically may or may not be programming languages, and the DOM API is actually only documented in JavaScript. So, I wouldn’t need to write JS, but would still want to read it…

      • @CameronDev
        link
        38 months ago

        Thats probably the best way to look at it, otherwise it gets very difficult very fast.

        If markup languages are locked out, then rust has other problems, because you then can’t change your cargo.toml file anymore.

        And then there is the build script problem :/

        As a thought excercise this has been interesting, there certainly are a lot of inter-dependencies between languages the deeper you look.

        • @[email protected]
          link
          fedilink
          28 months ago

          Yeah, I found it quite interesting, too. To some degree, I’ve been wondering why it’s so natural for programmers to be programming language polyglots, even if they’re not actively nerds/excited about them.
          And yeah, this discussion made me realize that you basically can’t take a single step in programming without being confronted with multiple languages/syntaxes at once.