1const std = @import("std"); 2 3pub fn main() void { 4 var byte: u8 = 255; 5 byte += 1; 6 std.debug.print("value: {}\n", .{byte}); 7} 8 9// exe=fail