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