const print = @import("std").debug.print; pub fn main() void { const a: ?i32 = null; const b = a orelse 1; print("{?} {} \n", .{a, b}); }