Getting Started with Zig

Learn the basics of Zig programming language and set up your environment. Start your journey into Zig programming with this comprehensive course.

Video 3: Assignment

Watch the first video to get an introduction to Zig programming language.

Example 1: Assignment

Explore a simple "Hello World" example written in Zig.


    const std = @import("std");
    
    pub fn main() void {
        std.debug.print("Hello, World!\n", .{});
    }
                    
Continue Learning