I am the Host. This is Zig · easy, lesson 1: allocators. Read the teaching and the stills before the checks. The quizzes are open book and test the subject — Zig itself — not product rules or layout trivia.
Zig Easy · Lesson 1 · On the house
allocators
Pass Allocator. Lesson 1 is free — on the house.
Lessons · Zig Easy · Lesson 1 of 10 · On the house
allocators
Pass Allocator.

You already finished Introductory. I will not re-teach the absolute first hello. We build upward.
Zig has no global hidden allocator.
std.mem.Allocator is passed explicitly.
defer allocator.free(slice).
ArenaAllocator batches frees.
Put allocators in a sentence you could teach a friend: what changes, what stays the same, and what you expect from the still.
Change one dial at a time when you experiment, then re-run. Batch changes invent ghost bugs.
Predict the still on paper before you type. Prediction turns running into confirmation.
Name each token in the still aloud. Hesitation marks the exact gap.
When something fails, read the last error line first. Calm retries beat rewriting everything.
Open-book means the page is a tool. Pick the claim that matches what we traced.
Keep mistaken traces beside corrected ones. The diff is the real lesson.
Label the runtime or toolchain you are using. Boring mismatches still burn evenings.
alloc
const std = @import("std");
pub fn main() !void {
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
defer _ = gpa.deinit();
const allocator = gpa.allocator();
const buf = try allocator.alloc(u8, 4);
defer allocator.free(buf);
buf[0] = 'A';
}Sit with that still. Trace it top to bottom. Name each piece. The exercise asks you to match its essence.
If something fails when you try it yourself, change one thing. Read the error. Return to the still. I will not rush you.
Quiz
Allocators are?
Quiz
defer runs?
Quiz
alloc returns?
Check
Match the still for: allocators.
That is the lesson. When every quiz and exercise on this page is green, mark it passed. Next lesson when you are ready.
Open-book: the answers are on this page. Pass every quiz and check (4) to mark the lesson done. This visit: 0/4.