intro-zig


"/home/yossef/notes/courses/zig-course/intro-zig.md"

path: courses/zig-course/intro-zig.md

- **fileName**: intro-zig
- **Created on**: 2026-02-08 15:35:24

zig is the nearest lang for c to solve the problem on c for low problem
on progamming

Important

no garbage collector on zig , u contorller on every thing

install zig

sudo pamcan -S zig

how to create a project for zig lang

mkdir <project-name>
zig init-exe # for init project 
# so now gone generate main.zig # this the main file

main.zig

const std = @import("std") # stander library for print 
pub fn main() {
}

continue:./data-types.md
before:[[]]