Options, Enums and Nullability

pub fn main() void {
    var foo: ?u8 = 0; // you may find it instructive to replace 0 with null here as well
    foo.? = 10;
    std.debug.print("{any}\n", .{foo});
}
2 Likes