Stdle #23 · integers · 2026-06-29
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 { var x: u32 = 1; x = x << 4 | x; std.debug.print("{d}\n", .{x});}Integers