← Back to archive

Stdle #1 · 2026-06-07

What does this log?

A past puzzle — fully playable. 4 attempts, hints on wrong guesses.

const std = @import("std");
pub fn main() void {
var x: u8 = 250;
x +|= 10;
std.debug.print("{d}\n", .{x});
x -|= 200;
std.debug.print("{d}\n", .{x});
}
Math
2 lines
4 attempts left

Answer & explanation