I have been reading about this new language for a while. It’s a C competitor, very slim language with very interesting choices, like supporting cross platform compilation out of the box, supports compiling C/C++ code (and can be used as a drop in replacement for C) to the point in can be used as replacement of ©make and executables are very small.

But, like all languages, adoption is what makes the difference. And we don’t know how it goes.

Is anyone actually using Zig right now? Any thoughts?

  • @CameronDev
    link
    1810 months ago

    I’ve heard of it, and don’t know what the point is.

    In zigs defence, I felt the same way about rust a few years back as well.

    I wonder what the killer feature for zig is. At least rust promises safer code, what does zig promise?

    • @[email protected]
      link
      fedilink
      1710 months ago

      I think the main advantages over C are:

      • better tooling
      • modern syntax
      • by default, pointers must be non-null. You have to specify if you want to use null pointers
      • better exception handling using the functional style of exceptions-as-values

      There are probably more, but those are the ones I remember.

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

      The killer feature (IMO) is automatic conversion of C code to Zig code (transpiling). E.g. take a C project, convert it all to Zig, and even if you don’t transpile, you still get really nice compat (include C headers just like a normal input without converting). Getting a medium sized C project converted to Zig in 1 day or 1 week, then incrementally improving from there, is really enticing IMO especially considering the alternative of rewriting in Rust could be months of very hard conversion work. Transpiling isn’t perfect but it seems to be a 97% soltuion.

      The second advantage seems to be easy unsafe work.

      BTW I don’t really use Zig, and I still prefer Rust, but those are the reasons I think it has a niche of its own.

      • @CameronDev
        link
        610 months ago

        I wonder if owners of large C projects are that keen to move off C to zip though? I guess time will tell. I do a fair bit of C, and I can’t see us risking switching to Zig, unless there was something else that made it really worth it. I should probably have a look at Zig if I have spare time, maybe there is a killer feature we aren’t seeing yet.

        Easy interop with legacy code is how kotlin took off, so maybe it will work out?

        • @BlackthornOP
          link
          510 months ago

          My understanding is that this is possible: you should be able to take a C project, add a build.zig file and under the hood the system is calling clang to compile the C project. HOWEVER, you can now add a .zig source file, compile that in zig and link together with the output of the C compiler into an executable. If this is actually true, I can definitely see the attractiveness of the language.

          • @CameronDev
            link
            110 months ago

            Definitely sounds like a well thought out upgrade path. But I don’t feel like an upgrade path is a killer feature in of itself. I think I’d have to have a play with it to see if there is something to make transitioning worthwhile.

        • Aloso
          link
          4
          edit-2
          10 months ago

          Easy interop with legacy code is how kotlin took off, so maybe it will work out?

          Good interop was a requirement for widespread adoption, but not the reason why programmers want to use it. There’s also null safety, a much nicer syntax, custom DSLs, sealed classes, type inference, data classes, named and optional arguments, template strings, multi-line strings, computed properties, arbitrary-arity function types, delegation, custom operators, operator overloading, structural equality, destructuring, extension methods, inline functions and non-local control flow, reified types, …

          Some of these features have since been added to Java.

          • @CameronDev
            link
            410 months ago

            I wasn’t trying to diminish the value of Kotlin, my point was that interop makes it so easy to stealth insert it into legacy java codebase, and that probably contributed heavily to it’s success?

            Language adoption is a multi-part problem, you ideally need good interop (or upgrade path) and your language needs to also be compelling enough to upgrade to. Zig certain seems to have the former, I’m not personally sold on the latter, but it certainly sounds like it might have some compelling features.

    • @BlackthornOP
      link
      510 months ago

      It competes with C, so in 2023 this basically means embedded systems. It offers executable size of few KB and out-of-the-box cross-platform compilation. It’s a modern C, basically, and it claims to be even faster than C as some language rules allow more optimizations

    • Treeniks
      link
      fedilink
      410 months ago

      This talk is technically not about Zig, but he still shows many of Zig’s strengts: https://youtu.be/aPWFLkHRIAQ?si=b-rf_oM*removed*IvAdq

      To me, Zig is a language that tries to be like C, but with all the decades of mistakes removed, or rather with modern knowledge of good language design in mind, while keeping as much compatibility as possible, as to not require a lot of work for the transition as Rust did. Thus, if you’re working in a C codebase, you’ll be good to go to integrate Zig in as little as an hour. They also have by far the cleanest solution to macros and generics that I have seen yet (although I miss my type classes).

    • @[email protected]
      link
      fedilink
      310 months ago

      It promises more correct code. As an example, most rust code and in fact most crates you will find will treat a memory allocation failure as an irrecoverable error, ie. your program will just crash.

      In Zig, such error classes are not supposed to exist by definition, making the resulting programs more robust.

      • @CameronDev
        link
        510 months ago

        How does zig solve the memory allocation failure issue? RAM isn’t unlimited, it has to fail eventually?

        • @[email protected]
          link
          fedilink
          710 months ago

          It does not “solve” memory allocation failures, as its not a thing that can be solved. It exposes memory allocation in a way that forces you as a programmer to handle the possible error situation. You cannot just call malloc or new or what have you and the just move on as if nothing happens.

          • @CameronDev
            link
            310 months ago

            Oh right, okay. I thought you meant that allocations just couldn’t fail.

            Instead you are just forced to handle it properly if it does fail. Would be very interested to test that in practice. C memory allocations are notoriously tolerant, and will happily let you allocate terabytes of memory that doesn’t really exist until you try write to it.

            I’ll definitely have to give that a play at some point.

            • @[email protected]
              link
              fedilink
              510 months ago

              Ah, that is another thing that Zig does well (in my opinion). Instead of having a global allocation call, Zig uses an allocator interface interface, meaning you as the programmer can plug in different allocation strategies as you require. So depending on if you do or don’t like that behavior, just pick the allocator accordingly, either for your whole program or just for parts of it.

    • voxel
      link
      fedilink
      2
      edit-2
      10 months ago

      zig’s biggest feature is comptime. completely removes need for generics as types exist as first class at compile time. also all functions can run at comlile time. no exceptions.
      for example the Vec function accepts a type as and returns a struct that can hold arbitrary amounts of said type on the heap.