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