fn randInt(io: Io, comptime T: type) T
fn randInt(io: Io, comptime T: type) T { var x: T = undefined; io.random(@ptrCast(&x)); return x; }