Stdle #22 · formatting · 2026-06-28
What does this Zig snippet output?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
const std = @import("std");pub fn main() void { std.debug.print("{d} + {d} = {d}\n", .{ @as(i32, 3), @as(i32, 4), @as(i32, 7) });}Formatting