← Back to archive

Stdle #58 · integers · 2026-08-03

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 {
const x: u8 = 250;
const y: u8 = x +% 10;
std.debug.print("{d}\n", .{y});
}
Integers
4 attempts left

Answer & explanation