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