• @[email protected]
    link
    fedilink
    9
    edit-2
    6 months ago

    You forgot that beauty - “undefined behavior”!

    Memory-safety can guarantee only so much safety! C++ can still blow up in your face, even with all the alleged memory-safety built into C++, thanks to all the UB traps in C and C++.

    Rust is the closest language that has no such “gotchas”.

    • @[email protected]
      link
      fedilink
      86 months ago

      C# isn’t exactly compiled, at least not into machine language. It is transpiled into byte code that is run on a virtual machine that on turn is an interpreter/JIT-compiler.

      Depending on why someone is asking for a compiled language that may or may not be a problem, because to the one writing the code it looks like a compiled language, but to the one running it it looks like an interpreted one.

      • @[email protected]
        link
        fedilink
        136 months ago

        It is compiled to bye code. Just to be clear transpiling is completely different. It is also not interpreted.

        But ahead of time compilation is available now. So you can compile straight machine code.

        The newer tiered JIT can actually give better performance than a traditional compiler as well.

        Overall C# is an awesome language. If performance is absolutely critical you can use raw pointers and manual memory management, but obviously you lose safety then.

      • Sarah
        link
        fedilink
        English
        176 months ago

        Not necessarily these days! With NativeAOT, C# can be compiled to machine code.

      • @[email protected]
        link
        fedilink
        46 months ago

        It is compiled into bytecode. A transpiler translates to another programming language with the same level of abstraction. A compiler translates into a level that is nearer to or machine code.

  • @[email protected]
    link
    fedilink
    466 months ago

    Rust for now, by a wide margin. But I’m following other languages that I think have the potential to surpass it, including Vale (promises way more than it delivers currently), Koka, Hylo, maybe Lobster.

  • Log in | Sign up
    link
    fedilink
    56 months ago

    Elm, which is the loveliest language ever.

    But I’m not sure if compiles to javascript counts as compiled, in which case haskell, which is considerably less lovely but still good.

    Roc isn’t finished, but it might turn out lovely, I don’t know.

  • Lambda
    link
    fedilink
    256 months ago

    Ada, hands down. Every time I go to learn Rust I’m disappointed by the lack of safety. I get that it’s miles ahead of C++, but that’s not much. I get that it strikes a much better balance than Ada (it’s not too hard to get it to compile) but it still leaves a lot to be desired in terms of safe interfacing. Plus it’s memory model is more complicated than it needs to be (though Ada’s secondary stack takes some getting used to).

    I wonder if any other Ada devs have experience with rust and can make a better comparison?

    • @[email protected]
      link
      fedilink
      English
      66 months ago

      I have done quite a bit of C, C++, Ada, and Pascal development. I recently got into Rust. I am still getting used to Rust, but it feels a bit like someone tried to apply Ada to C++. I like the modern development environment, but I am slower writing code than I would be in Ada or C++. The one feature of Ada that I really like and want other languages to adopt is the Rep spec. I write driver code and being able to easily and explicitly identify which symbol corresponds to which bit is really good.

    • @[email protected]
      link
      fedilink
      26 months ago

      I would use Ada or Spark in a heartbeat if there was an easy-to-use, mature cross-platform GUI library for it.

    • @[email protected]
      link
      fedilink
      26 months ago

      That’s transpiling, not compiling. Compiling is usually meant as “directly to machine code”, but I am yet to find an “official definition”.

      • @[email protected]
        link
        fedilink
        16 months ago

        transpiling is just a type of compiling. compiling in no terms means ‘directly to machine code’.

      • @[email protected]
        link
        fedilink
        36 months ago

        There is no official definition, in part because there isn’t any formal way to define the term that satisfies our intuition.

        Most treatments will handle “transpiling” as a special case of “compiling” and some will even handle decompilation as a special case where the object language is higher level than the source. Of course, even defining “higher level” can be quite hard.

        Plenty of languages “compile to C” and I see no issue with saying something “compiles to js,” especially given that js mostly lacks features of purescript rather than the other way around.

  • @[email protected]
    link
    fedilink
    166 months ago

    I started learning Go about 3 months ago and it quickly became one of my favorite languages. It feels like C with a bunch of Python niceties thrown in. And performance isn’t super critical in my work so being garbage collected is fine with me.

    • @[email protected]
      link
      fedilink
      326 months ago

      Garbage collection is still allowed, and technically JIT languages are still compiled so it really isn’t that restrictive

      • JackbyDev
        link
        fedilink
        English
        36 months ago

        Java, the language so good you compile it twice!

    • @[email protected]
      link
      fedilink
      56 months ago

      Not that specific tbh, most newer native languages these days are compiled and memory safe (Rust, Swift, Go, Kotlin Native, etc)

  • I Cast Fist
    link
    fedilink
    136 months ago

    Nim. Small compiler, small executables, easy to understand (except the macros, I still can’t get my head around them).

    FreePascal. Yeah yeah, Pascal’s dead, etc etc, but it being so verbose and strict certainly help programmers (or at least me) keeping things somewhat tidy.

    Also shoutout to V

  • @[email protected]
    link
    fedilink
    English
    156 months ago

    People don’t understand that JIT languages are still compiled, JIT literally describes when it’s compiled.

    That said, F# and/or OCaml.

  • @[email protected]
    link
    fedilink
    English
    29
    edit-2
    6 months ago

    As others have said, Haskell and Rust are pretty great. A language that hasn’t been mentioned that I REALLY want to catch on, though, is Unison.

    Honorable mention to my main driver lately: Purescript

      • @[email protected]
        link
        fedilink
        English
        14
        edit-2
        6 months ago

        Hard to describe in one phrase other than to say:

        NixOS is to Linux as Unison is to Haskell

        Content-addressing used in the context of programming languages in the service of solving the problem of distributed systems and their inability to share code across time and space.

        Haskell has a content-addressed module that was perhaps influenced by Unison.

        Here’s an excellent interview with one of the authors of Unison:

        https://youtu.be/zHzpoVgqgc4

  • @[email protected]
    link
    fedilink
    10
    edit-2
    6 months ago

    Python with MyPy.

    (Almost any language can meet those criteria, with enough shenanigans.)