feat: update single files compile error
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
const print = @import("std").debug.print;
|
||||
|
||||
pub fn main() void {
|
||||
var a: ?i32 = null;
|
||||
var b = a orelse 1;
|
||||
print("{} {} \n", .{a, b});
|
||||
const a: ?i32 = null;
|
||||
const b = a orelse 1;
|
||||
print("{?} {} \n", .{a, b});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user