Posts tagged with: zig

Back to all posts

Building Blocks Of Zig: Unions

June 29, 2024 5 Minutes

Zig unions are a powerful way to represent multiple possible types of a value in a single variable.

Building Blocks Of Zig: slices

June 3, 2024 6 Minutes

Slices are a core building block of Zig and are used to represent a contiguous sequence of elements. Learn how to create, access and iterate over slices in Zig.

Zig is the Next Big Programming Language

May 11, 2024 7 Minutes

Zig is an amazing programming language that has the potential to become huge in the coming years. Learn more about Zig and why you should consider using it.

Zig Allocators Explained

May 8, 2024 7 Minutes

A dive into how Zig handles memory allocation and how you can use Allocators to control it. Learn more about Zig's unique approach to memory management.