Vibeset

Zig

Zig is a systems language aiming to be a modern alternative to C: no hidden macros, no implicit memory allocations and great control. It stands out for its safety, integrated build system and frictionless C interoperability.

Para qué se usa

A favor

En contra

Ecosistema

Ejemplo

const std = @import("std");
pub fn main() void {
    std.debug.print("¡Hola, mundo!\n", .{});
}