← Back to archive

Stdle #2 · 2026-06-08

What does this log?

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

const std = @import("std");
pub fn main() void {
const a: u8 = 200;
const b: u8 = a *| 2;
std.debug.print("{d}\n", .{b});
const c: u8 = 100;
const d: u8 = c *| 2;
std.debug.print("{d}\n", .{d});
}
Math
2 lines
4 attempts left

Answer & explanation