1 2 3 4 5 6 7 8 9
const print = @import("std").debug.print; pub fn main() void { var x: i32 = undefined; x = 1; print("{d}", .{x}); } // exe=succeed